-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
62 lines (62 loc) · 1.83 KB
/
Copy pathpackage.json
File metadata and controls
62 lines (62 loc) · 1.83 KB
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
{
"name": "course-insight",
"description": "CPSC 310 Course Project",
"homepage": "https://github.com/ubccpsc/310/blob/main/README.md#project-license",
"author": "Reid Holmes",
"contributors": [
"Nick Bradley",
"Katharine Kerr"
],
"private": true,
"version": "1.0.0",
"engines": {
"node": ">= 24 < 25"
},
"dependencies": {
"@ubccpsc310/project-support": "^4.0.0",
"cors": "2.8.5",
"decimal.js": "10.6.0",
"express": "5.1.0",
"http-status-codes": "2.3.0",
"jszip": "3.10.1",
"multer": "2.0.2",
"parse5": "8.0.0"
},
"devDependencies": {
"@tsconfig/node24": "24.0.1",
"@types/chai": "4.3.0",
"@types/chai-as-promised": "7.1.4",
"@types/cors": "2.8.19",
"@types/express": "5.0.3",
"@types/mocha": "10.0.10",
"@types/multer": "2.0.0",
"@types/node": "24.3.0",
"@types/supertest": "6.0.3",
"@typescript-eslint/eslint-plugin": "^8.40.0",
"@typescript-eslint/parser": "^8.40.0",
"@ubccpsc310/eslint-plugin-descriptive": "^2.2.2",
"chai": "4.3.4",
"chai-http": "4.4.0",
"eslint": "^9.33.0",
"eslint-config-prettier": "^10.1.0",
"eslint-plugin-prettier": "^5.5.0",
"mocha": "11.7.1",
"nyc": "17.1.0",
"prettier": "3.6.2",
"supertest": "7.1.4",
"ts-node": "10.9.2",
"typescript": "5.9.2"
},
"scripts": {
"postinstall": "git config core.hooksPath .githooks",
"cover": "nyc --reporter text --reporter html yarn run test",
"build": "tsc && yarn prettier:check",
"build:lint": "tsc && yarn prettier:check && yarn lint:check",
"test": "mocha --require ts-node/register --timeout 10000 --extension .spec.ts --recursive test",
"lint:check": "eslint src test --ext .ts",
"lint:fix": "eslint src test --ext .ts --fix",
"prettier:check": "prettier --check \"src/**/*.ts\" \"test/**/*.ts\"",
"prettier:fix": "prettier --write \"src/**/*.ts\" \"test/**/*.ts\"",
"start": "ts-node src/index.ts"
}
}