-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
27 lines (27 loc) · 865 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
{
"name": "clojurescript-chess",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"build": "shadow-cljs release app",
"deploy": "npm run build && surge public/ --domain https://clojurescript-chess.surge.sh",
"deploy:stg": "npm run build && surge public/ --domain https://clojurescript-chess-staging.surge.sh",
"watch": "shadow-cljs watch app",
"repl": "shadow-cljs cljs-repl app",
"build-test": "shadow-cljs compile test",
"test": "yarn build-test && node src/main/chess/test/out/tests.js",
"release": "yarn test && yarn deploy"
},
"author": "[email protected]",
"license": "MIT",
"devDependencies": {
"shadow-cljs": "^2.8.95"
},
"dependencies": {
"react": "16.9.0",
"react-dnd": "^10.0.2",
"react-dnd-html5-backend": "^10.0.2",
"react-dom": "16.9.0"
}
}