forked from jacekschae/shadow-reagent
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
29 lines (29 loc) · 742 Bytes
/
package.json
File metadata and controls
29 lines (29 loc) · 742 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
{
"name": "shadow-reagent",
"version": "0.0.1",
"description": "Template for shadow-cljs and reagent projects",
"repository": {
"type": "git",
"url": "https://github.com/jacekschae/shadow-reagent"
},
"author": {
"name": "Jacek Schae",
"email": "jacek.schae@gmail.com"
},
"license": "EPL-2.0",
"scripts": {
"dev": "shadow-cljs watch app",
"release": "shadow-cljs release app",
"server": "shadow-cljs server",
"clean": "rm -rf target && rm -rf public/js",
"clean-win": "rmdir /s /q public/js & rmdir /s /q target"
},
"dependencies": {
"create-react-class": "^15.6.3",
"react": "^16.5.2",
"react-dom": "^16.5.2"
},
"devDependencies": {
"shadow-cljs": "^2.6.10"
}
}