-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
39 lines (39 loc) · 1 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
{
"name": "nba-pbc",
"private": true,
"engines": {
"node": "^14.15.x",
"vscode": "^1.49.0"
},
"scripts": {
"test": "tsc && npx mocha --require source-map-support/register dist/test",
"lint": "tsc && npx eslint . --ext .ts",
"coverage": "tsc && npx nyc npm test"
},
"dependencies": {
"canvas": "^2.8.0",
"express": "^4.17.1",
"express-async-handler": "^1.2.0",
"http-status-codes": "^2.1.4",
"node-fetch": "^2.6.6",
"q": "^1.5.1"
},
"devDependencies": {
"@types/express": "^4.17.13",
"@types/mocha": "^9.0.0",
"@types/node": "^14.14.25",
"@types/node-fetch": "^2.5.12",
"@types/q": "^1.5.5",
"@typescript-eslint/eslint-plugin": "^4.29.2",
"@typescript-eslint/parser": "^4.29.2",
"browserify": "^17.0.0",
"eslint": "^7.32.0",
"eslint-plugin-jsdoc": "^36.1.0",
"mocha": "^9.1.1",
"nyc": "^15.0.1",
"source-map-support": "^0.5.19",
"tsify": "^5.0.4",
"typescript": "^4.4.2",
"watchify": "^4.0.0"
}
}