-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.46 KB
/
package.json
File metadata and controls
49 lines (49 loc) · 1.46 KB
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
{
"name": "gikopoi2",
"version": "0.0.1",
"description": "gikopoi2",
"main": "build/index.js",
"dependencies": {
"chess.js": "^0.12.0",
"compression": "^1.7.4",
"cross-env": "^7.0.3",
"dayjs": "^1.11.6",
"express": "^4.16.2",
"express-sslify": "^1.2.0",
"got": "^11.8.1",
"janus-videoroom-client": "https://github.com/iccanobif/janus-client",
"lodash": "^4.17.20",
"loglevel": "^1.7.1",
"socket.io": "^4.0.2",
"tripcode": "file:./tripcode",
"uuid": "^8.3.2"
},
"license": "Beerware",
"scripts": {
"start": "node build/index.js",
"dev": "ts-node-dev --respawn index.ts",
"dev-debug": "cross-env DEBUG=* ts-node-dev --respawn index.ts",
"build": "npx tsc",
"start-persistor": "cross-env PERSISTOR_SECRET=hello node state-persistor.js",
"deploy-prod": "git push origin master:CI-PROD",
"deploy-test": "git push origin HEAD:CI-TEST -f",
"optimize-svgs": "node optimize-svgs.js",
"build-docker": "docker build -t gikopoipoi .",
"run-docker": "docker run -ti -p 8085:8085 gikopoipoi"
},
"devDependencies": {
"@types/chess.js": "^0.11.0",
"@types/compression": "^1.7.0",
"@types/express": "^4.17.9",
"@types/got": "^9.6.11",
"@types/lodash": "^4.14.168",
"@types/node": "^16.3.1",
"@types/uuid": "^8.3.0",
"jszip": "^3.10.0",
"nodemon": "^2.0.6",
"svgo": "^2.7.0",
"ts-node": "^10.0.0",
"ts-node-dev": "^1.1.1",
"typescript": "^4.1.3"
}
}