forked from ubccpsc/classy
-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
73 lines (73 loc) · 2.37 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.com/ubccpsc/classy",
"author": {
"name": "Reid Holmes",
"url": "https://cs.ubc.ca/~rtholmes"
},
"contributors": [
{
"name": "Nick Bradley",
"email": "nick@ncbradley.com",
"url": "https://www.ncbradley.com"
}
],
"license": "MIT",
"version": "0.4.0",
"engines": {
"node": ">= 18.12 < 19"
},
"workspaces": [
"packages/*",
"packages/portal/frontend",
"packages/portal/backend"
],
"dependencies": {
"dotenv": "4.0.0",
"fs-extra": "5.0.0",
"jszip": "3.8.0",
"mongodb": "^4.17.0",
"node-fetch": "^2.6.7",
"restify": "^10.0.0"
},
"devDependencies": {
"@types/bson": "^4.2.0",
"@types/dotenv": "4.0.2",
"@types/fs-extra": "5.0.0",
"@types/jszip": "3.1.6",
"@types/mocha": "2.2.44",
"@types/node": "^18.11.18",
"@types/node-fetch": "^2.5.5",
"@types/restify": "8.5.5",
"chai": "^4.3.6",
"jsonschema": "1.2.2",
"mocha": "^9.2.2",
"ts-node": "4.1.0",
"tslint": "^5.11.0",
"typescript": "^4.9.4",
"webpack": "^5.76.0"
},
"resolutions": {
"**/mem": "^4.0.0"
},
"nyc": {
"exclude": [
"**/*Spec.ts",
"**/TestHarness.ts",
"**/TestData.ts",
"**/TestGitHubActions.ts"
]
},
"scripts": {
"postinstall": "git config core.hooksPath .githooks",
"build": "tsc",
"build:prod": "tsc --outDir bin --sourceMap false",
"lint": "tslint --project tsconfig.json",
"cover": "nyc --reporter text --reporter html --report-dir ./testOutput/coverage yarn run test",
"test": "mocha --require=dotenv/config --require tsconfig-paths/register --timeout 10000 --recursive --exit packages/portal/backend/test packages/autotest/test",
"test:backend": "mocha --require=dotenv/config --require tsconfig-paths/register --timeout 10000 --recursive --exit packages/portal/backend/test",
"test:autotest": "mocha --require=dotenv/config --require tsconfig-paths/register --timeout 10000 --recursive --exit packages/autotest/test"
}
}