-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
33 lines (33 loc) · 916 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
{
"name": "chess",
"version": "1.0.0",
"scripts": {
"build": "rimraf build && tsc && cpy \"src/*\" build",
"lint": "eslint src/chess/*",
"serve": "watch-http-server build -a localhost -o",
"start": "npm run build && npm run serve"
},
"repository": {
"type": "git",
"url": "git+https://github.com/HerrEmil/Chess.git"
},
"bugs": {
"url": "https://github.com/HerrEmil/Chess/issues"
},
"homepage": "https://github.com/HerrEmil/Chess#readme",
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^4.21.0",
"@typescript-eslint/parser": "^4.21.0",
"cpy-cli": "^3.1.1",
"eslint": "^7.23.0",
"eslint-config-prettier": "^8.1.0",
"eslint-plugin-functional": "^3.2.1",
"rimraf": "^3.0.2",
"typescript": "^4.2.3",
"watch-http-server": "^0.7.6"
},
"dependencies": {
"@types/jquery": "^3.5.5",
"@types/jqueryui": "^1.12.15"
}
}