-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
31 lines (31 loc) · 952 Bytes
/
package.json
File metadata and controls
31 lines (31 loc) · 952 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
30
31
{
"name": "parens",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"coucou": "shadow-cljs server",
"watch": "shadow-cljs watch app",
"compile": "shadow-cljs compile app",
"release": "shadow-cljs release app",
"release-server": "shadow-cljs release server",
"html": "mkdir -p target && cp assets/* target/",
"serve": "yarn html && http-server target/",
"del": "rm -rf target/*",
"build": "yarn release && yarn html && yarn serve",
"boom": "yarn del && yarn html && yarn release",
"boom-server": "yarn release-server",
"emulate": "export GOOGLE_APPLICATION_CREDENTIALS=~/Code/Firebase/parens/.env/fire.json && firebase emulators:start"
},
"author": "",
"license": "MIT",
"devDependencies": {
"shadow-cljs": "^2.8.67"
},
"dependencies": {
"create-react-class": "15.6.3",
"firebase": "^7.2.2",
"react": "16.8.6",
"react-dom": "16.8.6"
}
}