-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
64 lines (64 loc) · 2.18 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
{
"name": "cpsc310project",
"description": "CPSC 310 Course Project",
"homepage": "https://github.ubc.ca/CPSC310-2017W-T2",
"author": "Reid Holmes",
"license": "GPL-3.0",
"version": "1.0.0",
"engines": {
"node": ">= 14 < 15"
},
"devDependencies": {
"@types/chai": "4.2.12",
"@types/chai-as-promised": "^7.1.3",
"@types/chai-http": "3.0.3",
"@types/dotenv": "4.0.2",
"@types/fs-extra": "5.0.4",
"@types/jszip": "3.1.3",
"@types/mocha": "2.2.46",
"@types/node": "12.12.6",
"@types/parse5": "5.0.2",
"@types/recursive-readdir": "2.2.0",
"@types/restify": "^2.0.X",
"@typescript-eslint/eslint-plugin": "^2.14.0",
"@typescript-eslint/eslint-plugin-tslint": "^2.14.0",
"@typescript-eslint/parser": "^2.14.0",
"chai": "4.1.2",
"chai-as-promised": "^7.1.1",
"chai-http": "3.0.0",
"decimal.js": "9.0.1",
"dotenv": "4.0.0",
"eslint": "^6.8.0",
"fs-extra": "7.0.0",
"jszip": "3.5.0",
"karma": "^3.0.0",
"karma-chai": "^0.1.0",
"karma-chrome-launcher": "^2.2.0",
"karma-coverage": "^1.1.1",
"karma-fixture": "^0.2.6",
"karma-html2js-preprocessor": "^1.1.0",
"karma-json-fixtures-preprocessor": "0.0.6",
"karma-mocha": "^1.3.0",
"karma-mocha-reporter": "^2.2.5",
"mocha": "^8.1.3",
"nyc": "15.1.0",
"parse5": "5.0.0",
"prettier": "1.18.2",
"restify": "^4.3.X",
"ts-node": "4.1.0",
"tslint": "5.18.0",
"tslint-microsoft-contrib": "6.0.0",
"typescript": "3.7.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",
"pretty": "prettier --config ./.prettierrc.json --write \"./**/*.ts\" && yarn fix",
"lint": "eslint . --ext .ts",
"fix": "eslint . --ext .ts --fix",
"test:frontend": "karma start",
"start": "node src/App.js"
}
}