-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
33 lines (33 loc) · 1.1 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
{
"name": "todo",
"version": "0.1.0",
"private": true,
"scripts": {
"start": "shadow-cljs watch app",
"watch-all": "shadow-cljs watch app test-browser",
"build": "shadow-cljs release app",
"build-verbose": "shadow-cljs release --verbose app",
"report": "shadow-cljs run shadow.cljs.build-report app report.html",
"debug-build": "shadow-cljs release app --debug",
"serve": "serve --single public --listen 5000",
"dev-build": "shadow-cljs compile app",
"repl": "shadow-cljs cljs-repl app",
"browser-repl": "shadow-cljs browser-repl",
"clojure-repl": "shadow-cljs clj-repl",
"test": "shadow-cljs watch test",
"test-browser": "shadow-cljs watch test-browser",
"test-once": "shadow-cljs compile test",
"clean": "rimraf public/js",
"nuke": "rimraf public/js .shadow-cljs node_modules yarn.lock package-lock.json out report.html",
"shadow-cljs-server": "shadow-cljs server"
},
"devDependencies": {
"rimraf": "^3.0.2",
"serve": "^11.3.2",
"shadow-cljs": "2.11.18"
},
"dependencies": {
"react": "17.0.1",
"react-dom": "17.0.1"
}
}