-
Notifications
You must be signed in to change notification settings - Fork 1
/
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": "jnu-app",
"version": "1.0.0",
"main": "index.js",
"license": "MIT",
"dependencies": {
"cookie-parser": "^1.4.4",
"crypto-js": "^4.0.0",
"express": "^4.17.1",
"express-session": "^1.17.0",
"jade": "^1.11.0",
"logger": "^0.0.1",
"mysql": "^2.18.1",
"request": "^2.88.2",
"request-promise-native": "^1.0.8"
},
"scripts": {
"start": "ENV=production node ./built/main.js",
"build": "rm -rf ./built/ && tsc",
"test": "mocha --exit built/test/*.js"
},
"devDependencies": {
"@types/bcrypt": "^3.0.0",
"@types/chai": "^4.2.14",
"@types/cookie-parser": "^1.4.2",
"@types/crypto-js": "^4.0.1",
"@types/express": "^4.17.2",
"@types/express-session": "^1.15.16",
"@types/lodash": "^4.14.167",
"@types/logger": "^0.0.0",
"@types/mocha": "^8.2.0",
"@types/mysql": "^2.15.8",
"@types/request-promise-native": "^1.0.17",
"@types/supertest": "^2.0.10",
"chai": "^4.2.0",
"mocha": "^8.2.1",
"supertest": "^6.1.1",
"typescript": "^3.7.5"
}
}