-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 766 Bytes
/
package.json
File metadata and controls
33 lines (33 loc) · 766 Bytes
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
{
"devDependencies": {
"eslint": "^7.32.0",
"eslint-config-portsoc-ts": "^0.8.9",
"nodemon": "^2.0.15"
},
"name": "driving-game",
"version": "1.0.0",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "npx tsc && cp src/index.html static/ && cp src/default.css static/ && npm run lint",
"lint": "npx eslint ./src"
},
"author": "",
"license": "ISC",
"description": "",
"eslintConfig": {
"extends": "portsoc-ts",
"root": true,
"env": {
"browser": true
}
},
"type": "module",
"dependencies": {
"@types/express": "^4.17.13",
"csv-write-stream": "^2.0.0",
"express": "^4.17.3",
"node-fetch": "^3.2.3",
"typescript": "^4.9.5"
}
}