-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
29 lines (29 loc) · 732 Bytes
/
package.json
File metadata and controls
29 lines (29 loc) · 732 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
{
"name": "tea-chess",
"version": "0.1.0",
"scripts": {
"serve": "serve release",
"clean": "bsb -clean-world",
"build:bsb": "bsb -make-world",
"build:js": "rollup -c",
"build": "run-s build:bsb build:js",
"watch:bsb": "bsb -make-world -w",
"watch:js": "rollup -c -w",
"watch": "run-p watch:bsb watch:js serve"
},
"keywords": [
"BuckleScript"
],
"author": "Daniel Quernheim",
"license": "MIT",
"devDependencies": {
"@rollup/plugin-node-resolve": "^11.0.1",
"bs-platform": "^8.4.2",
"bucklescript-tea": "^0.15.0",
"npm-run-all": "^4.1.2",
"ochess": "github:quernd/ochess",
"opal": "github:quernd/opal",
"rollup": "^2.0.0",
"serve": "^11.3.2"
}
}