-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
34 lines (34 loc) · 965 Bytes
/
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
{
"name": "draft-chess",
"version": "0.0.1",
"description": "1D draft chess. Project contains both server and client.",
"main": "index.js",
"directories": {
"lib": "lib"
},
"devDependencies": {
"@tsconfig/recommended": "^1.0.8",
"@types/node": "^22.10.2",
"@typescript-eslint/eslint-plugin": "^8.18.0",
"@typescript-eslint/parser": "^8.18.0",
"eslint": "^9.17.0",
"http-server": "^14.1.1",
"typescript": "^5.7.2"
},
"scripts": {
"test": "exit 1",
"start-server": "./node_modules/http-server/bin/http-server -p 8000",
"lint": "./node_modules/.bin/eslint --ext .ts --fix -- .",
"update-all-deps": "npx npm-check-updates -u"
},
"repository": {
"type": "git",
"url": "git+https://github.com/TheBicPen/1dchess.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/TheBicPen/1dchess/issues"
},
"homepage": "https://github.com/TheBicPen/1dchess#readme"
}