-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
executable file
·76 lines (76 loc) · 2.5 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": "ctf_server",
"version": "1.0.0",
"description": "Backend Support for the CTF portal",
"scripts": {
"start": "npm run serve",
"build": "npm run build-ts && npm run tslint",
"serve": "node dist/server.js",
"watch-node": "nodemon dist/server.js",
"watch": "concurrently -k -p \"[{name}]\" -n \"TypeScript,Node\" -c \"cyan.bold,green.bold\" \"npm run watch-ts\" \"npm run watch-node\"",
"build-ts": "tsc",
"watch-ts": "tsc -w",
"tslint": "tslint -c tslint.json -p tsconfig.json",
"debug": "npm run build && npm run watch-debug",
"serve-debug": "nodemon --inspect dist/server.js",
"watch-debug": "concurrently -k -p \"[{name}]\" -n \"TypeScript,Node\" -c \"cyan.bold,green.bold\" \"npm run watch-ts\" \"npm run serve-debug\""
},
"repository": {
"type": "git",
"url": "git+https://github.com/devclub-iitd/CTF_Server.git"
},
"author": "Atishya Jain",
"license": "ISC",
"bugs": {
"url": "https://github.com/devclub-iitd/CTF_Server/issues"
},
"homepage": "https://github.com/devclub-iitd/CTF_Server#readme",
"dependencies": {
"@types/bluebird": "^3.5.27",
"@types/body-parser": "^1.17.0",
"@types/compression": "0.0.36",
"@types/connect-mongo": "0.0.42",
"@types/cors": "^2.8.5",
"@types/dotenv": "^6.1.1",
"@types/errorhandler": "0.0.32",
"@types/jsonwebtoken": "^8.3.2",
"@types/lusca": "^1.6.0",
"@types/mongoose": "^5.5.6",
"@types/response-time": "^2.3.3",
"@types/validator": "^10.11.1",
"axios": "^0.21.1",
"bluebird": "^3.5.5",
"body-parser": "^1.19.0",
"compression": "^1.7.4",
"cookie-parser": "^1.4.5",
"cors": "^2.8.5",
"dotenv": "^8.0.0",
"errorhandler": "^1.5.1",
"express": "^4.17.1",
"jsonwebtoken": "^8.5.1",
"lusca": "^1.6.1",
"mongoose": "^5.6.0",
"nodemon": "^1.19.1",
"response-time": "^2.3.2",
"validator": "^11.0.0",
"winston": "^3.2.1"
},
"devDependencies": {
"@types/cookie-parser": "^1.4.2",
"@types/express": "^4.17.2",
"@types/node": "^12.12.27",
"@typescript-eslint/eslint-plugin": "^1.10.2",
"@typescript-eslint/parser": "^1.10.2",
"concurrently": "^4.1.0",
"eslint": "^5.16.0",
"eslint-config-airbnb": "^18.2.1",
"eslint-config-airbnb-typescript": "^4.0.0",
"eslint-config-prettier": "^7.1.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-react": "^7.22.0",
"nodemon": "^1.19.1",
"prettier": "^2.2.1",
"pretty-quick": "^3.1.0",
"typescript": "^3.5.2"
}
}