-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
28 lines (28 loc) · 910 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
{
"name": "fabric-todos",
"version": "1.0.0",
"description": "TODOs application in ClojureScript, Reagent and Microsoft Fluent UI",
"main": "index.js",
"license": "MIT",
"devDependencies": {
"http-server": "^0.12.3",
"shadow-cljs": "^2.16.12"
},
"dependencies": {
"@fluentui/react": "^8.50.0",
"@fluentui/font-icons-mdl2": "^8.1.20",
"create-react-class": "^15.7.0",
"react": "^17.0.2",
"react-dom": "^17.0.2"
},
"author": "Denis Fuenzalida",
"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"
}
}