forked from ubccpsc/classy
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
73 lines (73 loc) · 2.41 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
{
"private": true,
"name": "classy",
"description": "A GitHub service for grading commits and posting feedback.",
"homepage": "https://github.ubc.ca/cpsc310/autotest",
"author": {
"name": "Reid Holmes",
"url": "https://cs.ubc.ca/~rtholmes"
},
"contributors": [
{
"name": "Nick Bradley",
"email": "[email protected]",
"url": "https://www.ncbradley.com"
}
],
"license": "MIT",
"version": "0.4.0",
"engines": {
"node": ">= 12.13 < 13"
},
"workspaces": [
"packages/*",
"packages/portal/frontend",
"packages/portal/backend"
],
"devDependencies": {
"@types/chai": "4.0.8",
"@types/dotenv": "4.0.2",
"@types/fs-extra": "5.0.0",
"@types/jszip": "3.1.6",
"@types/mocha": "2.2.44",
"@types/mongodb": "^3.0.5",
"@types/node-fetch": "^2.5.5",
"@types/restify": "^8.4.1",
"chai": "4.1.2",
"jsonschema": "1.2.2",
"lerna": "^2.0.0-rc.5",
"mocha": "^7.1.0",
"ts-node": "4.1.0",
"tslint": "^5.11.0",
"typescript": "^3.7.2",
"webpack": "^3.11.0"
},
"dependencies": {
"@types/bson": "^4.2.0",
"@types/mongodb": "^3.0.5",
"@types/node-schedule": "^1.2.2",
"dotenv": "4.0.0",
"fs-extra": "5.0.0",
"jszip": "3.2.1",
"mongodb": "^3.0.2",
"node-fetch": "^2.6.0",
"restify": "^8.4.0"
},
"peerDependencies": {
"@types/node": "~8.10.53"
},
"resolutions": {
"**/mem": "^4.0.0"
},
"scripts": {
"postinstall": "git config core.hooksPath .githooks",
"build": "tsc",
"build:prod": "tsc --outDir bin --sourceMap false",
"lintOLD": "tslint -c tslint.json 'packages/portal/backend/src/**/*.ts' 'packages/portal/backend/test/**/*.ts' 'packages/portal/frontend/src/**/*.ts' 'packages/portal/frontend/test/**/*.ts' 'packages/autotest/src/**/*.ts' 'packages/autotest/test/**/*.ts'",
"lint": "tslint --project tsconfig.json",
"test": "mocha --require=dotenv/config --require ts-node/register --timeout 10000",
"cover": "nyc --reporter text --reporter html yarn run test",
"run:dev": "nohup node ./src/AutoTestDaemon.js 310 &> nohup.out &",
"run:prod": "LOG_LEVEL=INFO nohup node ./src/AutoTestDaemon.js 310 &> nohup.out &"
}
}