-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
44 lines (44 loc) · 1.11 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
{
"name": "pychess-puzzler",
"version": "0.2",
"private": true,
"description": "chess variant puzzler",
"repository": {
"type": "git",
"url": "https://github.com/gbtami/pychess-puzzler.git"
},
"main": "static/pychess-puzzler.js",
"author": "Bajusz Tamás",
"license": "AGPL-3.0",
"bugs": {
"url": "https://github.com/gbtami/pychess-puzzler/issues"
},
"dependencies": {
"chessgroundx": "^10.4.2",
"ffish-es6": "^0.7.4",
"fairy-stockfish-nnue.wasm": "^1.1.2",
"gettext.js": "^1.2.0",
"howler": "^2.2.3",
"mousetrap": "^1.6.5",
"snabbdom": "^3.1.0",
"websocket-heartbeat-js": "^1.1.0",
"idb-keyval": "^6.2.0"
},
"devDependencies": {
"@types/mousetrap": "1.6.4",
"@types/gettext.js": "^1.0.0",
"@types/howler": "^2.2.4",
"postcss": "8.x",
"esbuild": "^0.17.4",
"esbuild-plugin-compress": "^1.0.1",
"typescript": "^5.0",
"tslib": "^2.3.1",
"yarn": "^1.22.17"
},
"scripts": {
"postinstall": "./cp2static.sh",
"dev": "node esbuild.mjs dev",
"prod": "node esbuild.mjs prod",
"heroku-postbuild": "yarn run dev"
}
}