-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
34 lines (34 loc) · 873 Bytes
/
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
{
"name": "server",
"version": "0.0.1",
"description": "",
"main": "index.js",
"scripts": {
"test": "jest",
"serve": "ts-node index.ts",
"servedev": "ts-node-dev --inspect=0.0.0.0:9229 --exit-child --respawn index.ts",
"build": "node_modules/typescript/bin/tsc index.ts",
"cli": "ts-node src/cli/index.ts"
},
"author": "",
"license": "MIT",
"dependencies": {
"accept-language-parser": "^1.5.0",
"array-flatten": "^3.0.0",
"express": "^4.18.1",
"redis": "^4.3.1",
"socket.io": "^4.5.1"
},
"devDependencies": {
"@types/accept-language-parser": "^1.5.3",
"@types/express": "^4.17.13",
"@types/jest": "^28.1.1",
"@types/node": "^17.0.36",
"jest": "^28.1.1",
"ts-jest": "^28.0.4",
"ts-node": "^10.8.0",
"ts-node-dev": "^2.0.0",
"tslib": "^2.4.0",
"typescript": "^4.7.2"
}
}