-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
34 lines (34 loc) · 989 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
{
"name": "pyshadow_cljs",
"version": "0.0.1",
"description": "ClojureScript and re-frame codebase containing real world examples (CRUD, auth, advanced patterns, etc) that adheres to the RealWorld spec and API.",
"repository": {
"type": "git",
"url": "https://github.com/jacekschae/conduit"
},
"author": {
"name": "David Pham",
"email": "[email protected]"
},
"license": "MIT",
"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",
"d3": "^5.7.0",
"react": "^16.5.2",
"react-dom": "^16.5.2",
"@material-ui/core": "^3.8.3",
"@material-ui/icons": "^3.0.2"
},
"devDependencies": {
"shadow-cljs": "^2.6.10",
"react-flip-move": "^3.0.2",
"react-highlight.js": "^1.0.7"
}
}