-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
92 lines (92 loc) · 2.86 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
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
{
"name": "iitdmarketserver",
"version": "1.0.0",
"description": "",
"scripts": {
"start": "npm run serve",
"serve": "node build/src/server.js",
"watch-node": "nodemon build/src/server.js",
"build-ts": "tsc",
"watch-ts": "tsc -w",
"serve-debug": "nodemon --inspect build/src/server.js",
"watch-debug": "concurrently -k -p \"[{name}]\" -n \"TypeScript,Node\" -c \"cyan.bold,green.bold\" \"npm run watch-ts\" \"npm run serve-debug\"",
"check": "gts check",
"clean": "gts clean",
"compile": "tsc",
"fix": "gts fix",
"prepare": "npm run compile",
"pretest": "npm run compile",
"posttest": "npm run check",
"eslint-test": "eslint src/**/*.ts",
"eslint-fix": "eslint --fix src/**/*.ts",
"prettier-test": "prettier --check src/**/*.ts",
"prettier-fix": "prettier --write src/**/*.ts",
"lint-tests": "npm run eslint-test;npm run prettier-test",
"lint-fixes": "npm run eslint-fix;npm run prettier-fix",
"build:prod": "webpack --config webpack.config.ts"
},
"repository": {
"type": "git",
"url": "git+https://github.com/devclub-iitd/IITDMarketServer.git"
},
"author": "",
"license": "MIT",
"bugs": {
"url": "https://github.com/devclub-iitd/IITDMarketServer/issues"
},
"homepage": "https://github.com/devclub-iitd/IITDMarketServer#readme",
"devDependencies": {
"@types/compression": "^1.7.0",
"@types/cors": "^2.8.6",
"@types/express": "^4.17.6",
"@types/lodash": "^4.14.154",
"@types/lusca": "^1.6.1",
"@types/mongodb": "^3.5.20",
"@types/node": "^14.0.6",
"@types/webpack": "^4.41.15",
"@types/ws": "^7.2.5",
"bufferutil": "^4.0.1",
"concurrently": "^5.2.0",
"gts": "^2.0.2",
"minimist": "^1.2.5",
"mongodb-client-encryption": "^1.0.1",
"nodemon": "^2.0.4",
"ts-loader": "^7.0.5",
"ts-node": "^8.10.2",
"typescript": "^3.9.3",
"utf-8-validate": "^5.0.2",
"webpack-cli": "^3.3.11",
"ws": "^7.3.0"
},
"dependencies": {
"@types/connect-flash": "0.0.35",
"@types/cookie-parser": "^1.4.2",
"@types/express-session": "^1.17.0",
"@types/method-override": "0.0.31",
"@types/mongoose": "^5.7.21",
"@types/passport": "^1.0.3",
"mongodb": "^3.5.8",
"@types/passport-local-mongoose": "^4.0.13",
"@types/socket.io": "^2.1.8",
"body-parser": "^1.19.0",
"compression": "^1.7.4",
"connect-flash": "^0.1.1",
"connect-mongo": "^3.2.0",
"cookie-parser": "^1.4.5",
"cors": "^2.8.5",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"express-session": "^1.17.1",
"lodash": "^4.17.15",
"lusca": "^1.6.1",
"method-override": "^3.0.0",
"moment": "^2.26.0",
"mongoose": "^5.9.16",
"mongoose-voting": "^0.3.0",
"passport": "^0.4.1",
"passport-local": "^1.0.0",
"passport-local-mongoose": "^6.0.1",
"socket.io": "^2.3.0",
"webpack": "^4.43.0"
}
}