This repository has been archived by the owner on Jan 26, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
78 lines (78 loc) · 2.83 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
{
"name": "classportal-api",
"description": "classportal api",
"version": "1.0.0",
"license": "MIT",
"author": "Michael Sargent",
"repository": {
"type": "git",
"url": "https://github.com/mksarge/classportal-api"
},
"dependencies": {
"@types/chai": "^3.4.34",
"@types/csv-parse": "^1.1.6",
"@types/csv-stringify": "^1.0.2",
"@types/mocha": "^2.2.36",
"@types/mongodb": "^2.2.11",
"@types/mongoose": "^4.7.5",
"@types/node-fetch": "^1.6.7",
"@types/passport": "^0.3.3",
"@types/request-promise-native": "^1.0.5",
"@types/restify": "^2.0.39",
"@types/restify-plugins": "^1.5.4",
"@types/sinon": "^1.16.35",
"@types/supertest": "^2.0.0",
"child-process-promise": "^2.2.1",
"cookie-session": "^2.0.0-beta.1",
"csv-parse": "^1.2.0",
"dotenv": "^4.0.0",
"faker": "^4.1.0",
"forever": "^0.15.3",
"jsonwebtoken": "^8.1.1",
"mime-types": "^2.1.17",
"mongodb": "^2.2.30",
"mongoose": "^4.8.2",
"mongoose-findorcreate": "^1.0.1",
"node-fetch": "^1.6.3",
"passport": "^0.3.2",
"passport-github": "^1.1.0",
"passport-restify": "^1.0.1",
"readline-sync": "^1.4.7",
"request": "^2.81.0",
"request-promise-native": "^1.0.4",
"restify": "^4.1.1",
"restify-cookies": "^0.2.2",
"restify-errors": "^4.3.0",
"socket.io": "^2.0.4",
"tmp-promise": "^1.0.3",
"ts-node": "^3.3.0"
},
"devDependencies": {
"chai": "^3.5.0",
"chai-http": "^3.0.0",
"istanbul": "^0.4.5",
"mocha": "^3.2.0",
"mocha-typescript": "^1.0.23",
"passport-local": "^1.0.0",
"retyped-chai-http-tsd-ambient": "0.0.0-0",
"sinon": "^1.17.7",
"supertest": "^3.0.0",
"tslint": "^4.3.1",
"tslint-eslint-rules": "^3.2.3",
"typescript": "2.3.2"
},
"scripts": {
"clean": "node tsc-cleanup",
"lint": "node_modules/.bin/tslint --project . --exclude \"**/app/github/**\"",
"compile": "node_modules/.bin/tsc",
"build": "npm run clean && npm run lint && npm run compile",
"test": "npm run build && NODE_ENV='test' node_modules/.bin/_mocha --timeout 10000 \"build/test/**/*.spec.js\"",
"test:runtime": "npm run build && NODE_ENV='test' node_modules/.bin/_mocha \"build/test/**/*.spec.js\"",
"test:debug": "DEBUG=true npm run test",
"cover": "npm run build && NODE_ENV='test' node_modules/.bin/istanbul cover node_modules/.bin/_mocha \"test/**/*.spec.js\"",
"start:dev": "npm run build && NODE_ENV='development' && DEBUG=true node ./build/server.js",
"start:prod": "npm run build && NODE_ENV='production' forever start --spinSleepTime 10000 -l LOGFILE -o OUTPUT -e ERRFILE --append ./build/server.js",
"seed:test": "npm run build && NODE_ENV='test' node ./build/utils/seed.js",
"dump:results": "node --max_old_space_size=429496729 build/app/batch/DataExporter CPSC310-2017W-T1 results test"
}
}