forked from typestack/socket-controllers
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
76 lines (76 loc) · 1.98 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
{
"name": "socket-controllers",
"version": "0.0.5",
"description": "Use class-based controllers to handle websocket events.",
"license": "MIT",
"main": "index.js",
"author": {
"name": "TypeStack contributors"
},
"repository": {
"type": "git",
"url": "https://github.com/pleerock/socket-controllers.git"
},
"keywords": [
"websocket",
"typescript",
"typescript-websocket",
"socket-controllers",
"socket.io",
"socket-server"
],
"scripts": {
"build": "rimraf build && tsc --project tsconfig.prod.json",
"prettier:fix": "prettier --write \"**/*.ts\"",
"prettier:check": "prettier --check \"**/*.ts\"",
"lint:fix": "eslint --max-warnings 0 --fix --ext .ts src/",
"lint:check": "eslint --max-warnings 0 --ext .ts src/",
"test": "jest --coverage --verbose",
"test:watch": "jest --watch",
"test:ci": "jest --runInBand --no-cache --coverage --verbose"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.md": [
"npm run prettier:fix"
],
"*.ts": [
"npm run prettier:fix"
]
},
"dependencies": {
"@types/path-to-regexp": "^1.7.0",
"class-transformer": "^0.4.0",
"glob": "^7.1.7",
"path-to-regexp": "^6.2.0",
"reflect-metadata": "^0.1.13",
"socket.io": "^2.4.0"
},
"devDependencies": {
"@types/glob": "^7.1.3",
"@types/jest": "^26.0.23",
"@types/node": "^15.12.1",
"@types/socket.io": "^3.0.2",
"@typescript-eslint/eslint-plugin": "^4.26.0",
"@typescript-eslint/parser": "^4.26.0",
"eslint": "^7.28.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-jest": "^24.3.6",
"express": "^4.17.1",
"husky": "^4.3.8",
"jest": "^26.6.3",
"lint-staged": "^11.0.0",
"prettier": "^2.3.1",
"reflect-metadata": "0.1.13",
"rimraf": "3.0.2",
"socket.io-client": "^2.4.0",
"ts-jest": "^26.5.6",
"ts-node": "^10.0.0",
"typedi": "^0.10.0",
"typescript": "^4.3.2"
}
}