-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
26 lines (26 loc) · 969 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
{
"name": "tetris-reagent",
"version": "0.1.0",
"repository": "[email protected]:codeasone/tetris-reagent.git",
"author": "Mark Stuart <[email protected]>",
"license": "MIT",
"private": true,
"scripts": {
"clean": "rm -rf ./resources/public/css ./resources/public/js",
"compile:dev": "shadow-cljs compile app",
"dev": "shadow-cljs watch app & yarn styles:dev",
"release": "shadow-cljs release app && yarn styles:release",
"serve": "shadow-cljs server",
"styles:dev": "tailwindcss -i ./src/css/main.css -o resources/public/css/main.css --watch",
"styles:release": "tailwindcss -i ./src/css/main.css -o resources/public/css/main.css --minify",
"deps:tree": "clj -X:deps tree :aliases '[:test]'",
"play": "yarn clean && yarn release && yarn serve"
},
"devDependencies": {
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-refresh": "^0.14.0",
"shadow-cljs": "2.23.3",
"tailwindcss": "^3.3.2"
}
}