-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
92 lines (92 loc) · 2.91 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": "iitd-connect-server",
"version": "0.0.1",
"repository": "https://github.com/devclub-iitd/IITDConnectServer.git",
"scripts": {
"start": "node build/src/server.js",
"postinstall": "tsc",
"watch-node": "nodemon build/src/server.js",
"build-ts": "tsc",
"post-build": "copyfiles src/**/*.pem build/",
"watch-ts": "tsc -w",
"serve-debug": "nodemon --inspect build/src/server.js",
"watch-debug": "tsc && npm run post-build && npm run test-debug",
"test-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 './**/*.ts'",
"eslint-fix": "eslint --fix './**/*.ts'",
"prettier-test": "prettier --check './**/*.ts'",
"prettier-fix": "prettier --write './**/*.ts'",
"lint-tests": "npm run eslint-test;npm run prettier-test",
"lint-fixes": "npm run eslint-fix;npm run prettier-fix",
"api-tests": " env-cmd -f ./config/test.env jest --watch"
},
"license": "MIT",
"dependencies": {
"axios": "^0.22.0",
"bcryptjs": "^2.4.3",
"compression": "^1.7.4",
"cors": "^2.8.5",
"dotenv": "^10.0.0",
"express": "^4.17.1",
"express-jwt": "^6.1.0",
"express-status-monitor": "^1.3.3",
"express-validator": "^5.3.0",
"firebase-admin": "^9.12.0",
"google-auth-library": "^7.10.0",
"googleapis": "^88.2.0",
"https-proxy-agent": "^5.0.0",
"jsonwebtoken": "^8.5.1",
"lusca": "^1.7.0",
"mongoose": "^6.0.9",
"morgan": "^1.10.0",
"multer": "^1.4.3",
"node-cron": "^3.0.0",
"nodemailer": "^6.6.5",
"request": "^2.88.0",
"request-promise": "^4.2.4",
"slug": "^5.1.0",
"uuid": "^8.3.2",
"validator": "^13.7.0",
"winston": "^3.3.3"
},
"devDependencies": {
"@types/bcryptjs": "^2.4.2",
"@types/compression": "^1.7.2",
"@types/cors": "^2.8.12",
"@types/dotenv": "^6.1.1",
"@types/express": "^4.17.13",
"@types/express-jwt": "^6.0.2",
"@types/jest": "^27.0.2",
"@types/jsonwebtoken": "^8.5.5",
"@types/lusca": "^1.7.1",
"@types/mongoose": "^5.11.97",
"@types/morgan": "^1.9.3",
"@types/multer": "^1.4.7",
"@types/node": "^16.10.3",
"@types/node-cron": "^3.0.0",
"@types/nodemailer": "^6.4.4",
"@types/request-promise": "^4.1.48",
"@types/slug": "^5.0.2",
"@types/supertest": "^2.0.11",
"@types/uuid": "^8.3.1",
"@types/validator": "^13.6.3",
"@types/winston": "^2.4.4",
"concurrently": "^6.3.0",
"copyfiles": "^2.4.1",
"env-cmd": "^10.1.0",
"gts": "^3.1.0",
"jest": "^27.2.5",
"minimist": "^1.2.5",
"nodemon": "^2.0.13",
"supertest": "^6.1.6",
"ts-jest": "^27.0.5",
"typescript": "^4.4.3"
}
}