-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
40 lines (40 loc) · 1.27 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
{
"name": "covid-tracker",
"version": "0.1.0",
"private": true,
"scripts": {
"sc": "shadow-cljs",
"server": "shadow-cljs stop && shadow-cljs start",
"start": "shadow-cljs watch app",
"cards": "shadow-cljs watch cards",
"build": "shadow-cljs release app",
"test": "shadow-cljs compile test && node out/test.js",
"test:watch": "shadow-cljs watch test --config-merge \"{:autorun true}\"",
"e2e": "shadow-cljs compile e2e && node out/e2e.js",
"report": "shadow-cljs run shadow.cljs.build-report app report.html",
"lint": "clj-kondo --lint src",
"format": "zprint-clj --hang -i \"./src/**/*.{clj,cljs,cljc,edn}\" -o ./ && zprint-clj -i \"./*.edn\" -o ./",
"clean": "rimraf public/js"
},
"devDependencies": {
"@testing-library/dom": "^7.19.0",
"@testing-library/react": "^10.4.3",
"clj-kondo": "2020.11.7",
"highlight.js": "10.1.1",
"jsdom": "^16.2.2",
"jsdom-global": "^3.0.2",
"marked": "^1.1.0",
"rimraf": "~3.0.2",
"serve-handler": "~6.1.3",
"shadow-cljs": "~2.10.13",
"taiko": "~1.0.12",
"taiko-diagnostics": "~0.4.0",
"zprint-clj": "~0.8.0"
},
"dependencies": {
"create-react-class": "~15.6.3",
"react": "~16.8.0",
"react-dom": "~16.8.0",
"recharts": "^2.0.4"
}
}