-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.41 KB
/
Copy pathpackage.json
File metadata and controls
51 lines (51 loc) · 1.41 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
{
"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": ">= 16 < 17"
},
"dependencies": {
"decimal.js": "10.3.1",
"express": "4.17.2",
"fs-extra": "10.0.0",
"jszip": "3.7.1",
"parse5": "6.0.1"
},
"devDependencies": {
"@tsconfig/node16": "1.0.2",
"@types/chai": "^4.3.0",
"@types/chai-as-promised": "7.1.4",
"@types/express": "4.17.13",
"@types/fs-extra": "9.0.13",
"@types/mocha": "^9.1.0",
"@types/node": "16.11.7",
"@types/parse5": "6.0.3",
"@typescript-eslint/eslint-plugin": "5.9.0",
"@typescript-eslint/parser": "5.9.0",
"@ubccpsc310/folder-test": "2.0.0",
"chai": "4.3.4",
"chai-as-promised": "7.1.1",
"chai-http": "4.3.0",
"eslint": "8.6.0",
"eslint-plugin-import": "2.25.4",
"eslint-plugin-jsdoc": "37.5.1",
"mocha": "9.1.3",
"nyc": "15.1.0",
"prettier": "2.5.1",
"ts-node": "10.4.0",
"typescript": "4.5.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"
}
}