-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
40 lines (40 loc) · 1.04 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
{
"name": "hctf_final_platform",
"version": "1.0.0",
"description": "",
"main": "./dsit/index.js",
"scripts": {
"watch": "tsc --watch",
"start": "node ./dist/index.js",
"build": "tsc",
"init": "node ./dist/scripts/initial.js",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Last-Order/hctf_final_platform.git"
},
"author": "",
"license": "GPL-3.0",
"bugs": {
"url": "https://github.com/Last-Order/hctf_final_platform/issues"
},
"homepage": "https://github.com/Last-Order/hctf_final_platform#readme",
"dependencies": {
"bcryptjs": "^2.4.3",
"body-parser": "^1.18.2",
"express": "^4.16.2",
"redis": "^2.8.0",
"socket.io": "^2.0.4"
},
"devDependencies": {
"@types/bcryptjs": "^2.4.1",
"@types/body-parser": "^1.16.8",
"@types/express": "^4.0.39",
"@types/node": "^8.0.52",
"@types/redis": "^2.8.1",
"@types/socket.io": "^1.4.31",
"tslint": "^5.8.0",
"typescript": "^2.6.1"
}
}