-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
55 lines (55 loc) · 1.53 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
{
"name": "insightubc",
"description": "CPSC 310 Course Project",
"homepage": "https://github.com/ubccpsc/310",
"author": "Reid Holmes",
"license": "GPL-3.0",
"version": "1.0.0",
"engines": {
"node": ">= 18 < 19"
},
"dependencies": {
"cors": "2.8.5",
"decimal.js": "10.4.3",
"express": "4.18.2",
"fs-extra": "11.1.0",
"jszip": "3.10.1",
"parse5": "7.1.1"
},
"devDependencies": {
"@tsconfig/node18": "1.0.1",
"@types/chai": "4.3.0",
"@types/chai-as-promised": "7.1.4",
"@types/cors": "2.8.12",
"@types/express": "4.17.13",
"@types/fs-extra": "9.0.13",
"@types/mocha": "10.0.1",
"@types/node": "18.11.18",
"@types/supertest": "2.0.12",
"@typescript-eslint/eslint-plugin": "5.48.0",
"@typescript-eslint/parser": "5.48.0",
"@ubccpsc310/folder-test": "3.0.0",
"chai": "4.3.4",
"chai-as-promised": "7.1.1",
"eslint": "8.31.0",
"eslint-config-prettier": "8.6.0",
"eslint-plugin-import": "2.26.0",
"eslint-plugin-jsdoc": "39.6.4",
"mocha": "10.2.0",
"nyc": "15.1.0",
"prettier": "2.8.2",
"supertest": "6.3.3",
"ts-node": "10.9.1",
"typescript": "4.9.4"
},
"scripts": {
"postinstall": "git config core.hooksPath .githooks",
"cover": "nyc --reporter text --reporter html yarn run test",
"build": "tsc && yarn lint",
"test": "mocha --require ts-node/register --timeout 10000 --extension .spec.ts --recursive test",
"pretty": "prettier --config ./.prettierrc.json --write \"./**/*.ts\"",
"lint": "eslint src test --ext .ts",
"fix": "yarn lint --fix",
"start": "ts-node src/App.ts"
}
}