-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
68 lines (68 loc) · 2 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
{
"name": "snutt",
"version": "2.3.3",
"private": true,
"scripts": {
"test": "tsc -p . && cp -R resources/* build/ && mocha -r module-alias/register --exit \"build/test/**/*.js\"",
"start": "node ./build/src/api/app.js",
"build": "tsc -p . && cp -R resources/* build/",
"apikey": "node ./build/src/core/config/apiKey list",
"coursebook": "node ./build/src/batch/coursebook",
"prune_log": "node ./build/src/batch/prune_log",
"feedback2github": "node ./build/src/batch/feedback2github"
},
"dependencies": {
"@types/async": "~2.0.49",
"@types/bcrypt": "~2.0.0",
"@types/express": "^4.0.34",
"@types/express-promise-router": "^2.0.0",
"@types/js-yaml": "~3.11.0",
"@types/jsonwebtoken": "^7.2.0",
"@types/mocha": "^2.2.35",
"@types/mongoose": "^4.7.2",
"@types/morgan": "^1.7.32",
"@types/node": "^6.0.55",
"@types/redis": "^2.8.6",
"@types/request": "^2.0.0",
"@types/request-promise-native": "~1.0.6",
"@types/rewire": "^2.5.28",
"@types/sinon": "^5.0.1",
"@types/supertest": "^2.0.7",
"assert-rejects": "^0.1.1",
"async": "~2.6.4",
"async-retry": "^1.3.1",
"aws-sdk": "^2.1354.0",
"bcrypt": "~5.1.0",
"body-parser": "~1.20.1",
"cookie-parser": "~1.4.3",
"cors": "~2.8.4",
"ejs": "~3.1.7",
"express": "~4.17.3",
"express-promise-router": "^3.0.3",
"immutable": "~3.8.2",
"js-yaml": "^3.13.1",
"jsonwebtoken": "~5.5.0",
"mocha": "~5.2.0",
"module-alias": "^2.0.6",
"mongodb": "~3.1.13",
"mongoose": "^5.7.5",
"morgan": "^1.9.1",
"nodemailer": "^6.7.5",
"pem-jwk": "^2.0.0",
"redis": "^3.1.1",
"request": "^2.74.0",
"request-promise-native": "~1.0.5",
"rewire": "^4.0.1",
"sinon": "^6.1.3",
"streamroller": "^0.8.5",
"supertest": "~3.1.0",
"typescript": "2.9.1",
"winston": "^3.2.0",
"winston-daily-rotate-file": "^3.6.0",
"xlsx": "~0.17.0"
},
"_moduleAliases": {
"@app": "build/src",
"@test": "build/test"
}
}