-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
executable file
·36 lines (36 loc) · 965 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
28
29
30
31
32
33
34
35
36
{
"name": "minimal-shadow-cljs-browser",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"watch": "shadow-cljs watch app",
"compile": "shadow-cljs compile app",
"release": "shadow-cljs release app",
"html": "mkdir -p target && cp assets/index.html target/",
"serve": "yarn html && http-server target/",
"del": "rm -r target/*",
"build": "yarn release && yarn html && yarn serve"
},
"author": "",
"license": "MIT",
"devDependencies": {
"http-server": "^0.11.1",
"shadow-cljs": "^2.8.0"
},
"dependencies": {
"concat-stream": "^2.0.0",
"content-type": "^1.0.4",
"cookies": "^0.7.3",
"create-react-class": "^15.6.3",
"etag": "^1.8.1",
"lru": "^3.1.0",
"multiparty": "^4.2.1",
"random-bytes": "^1.0.0",
"react": "^16.8.6",
"react-dom": "^16.8.6",
"simple-encryptor": "^2.0.0",
"source-map-support": "^0.5.11",
"xregexp": "^4.2.4"
}
}