-
Notifications
You must be signed in to change notification settings - Fork 52
/
package.json
62 lines (62 loc) · 1.75 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
{
"name": "socket-controllers",
"version": "0.3.1",
"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 src/**/*.ts",
"lint:check": "eslint --max-warnings 0 src/**/*.ts",
"test": "jest --coverage --verbose",
"test:watch": "jest --watch",
"test:ci": "jest --runInBand --no-cache --coverage --verbose"
},
"dependencies": {
"class-transformer": "^0.5.1",
"glob": "^11.0.0",
"path-to-regexp": "^8.1.0",
"reflect-metadata": "^0.2.2",
"socket.io": "^4.7.5"
},
"devDependencies": {
"@types/glob": "^8.1.0",
"@types/jest": "^29.5.13",
"@types/node": "^20.14.11",
"@types/path-to-regexp": "^1.7.0",
"@types/socket.io": "^3.0.2",
"@typescript-eslint/eslint-plugin": "^8.6.0",
"@typescript-eslint/parser": "^8.6.0",
"eslint": "^9.10.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-jest": "^28.8.3",
"express": "^4.21.0",
"husky": "^9.1.6",
"jest": "^29.7.0",
"lint-staged": "^15.2.10",
"prettier": "^3.3.3",
"rimraf": "6.0.1",
"socket.io-client": "^4.7.5",
"ts-jest": "^29.2.5",
"ts-node": "^10.9.2",
"typedi": "^0.10.0",
"typescript": "^5.6.2"
}
}