-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
30 lines (30 loc) · 984 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
{
"name": "lesson-planner",
"devDependencies": {
"@tailwindcss/forms": "^0.5.4",
"autoprefixer": "^10.4.15",
"cross-env": "^7.0.3",
"cssnano": "^6.0.1",
"daisyui": "^3.5.1",
"highlight.js": "11.8.0",
"npm-run-all": "^4.1.5",
"postcss": "^8.4.28",
"postcss-cli": "^10.1.0",
"shadow-cljs": "2.25.2",
"tailwindcss": "^3.3.3"
},
"dependencies": {
"react": "^17.0.2",
"react-dom": "^17.0.2"
},
"scripts": {
"server:watch": "clj -M -m server.core",
"server:release": "clojure -T:build uber",
"shadow:watch": "shadow-cljs watch app",
"shadow:release": "shadow-cljs release app",
"postcss:build": "cross-env TAILWIND_MODE=build postcss resources/tailwind.css -o ./resources/public/css/main.css --verbose",
"postcss:release": "cross-env NODE_ENV=production postcss resources/tailwind.css -o ./resources/public/css/main.css --verbose",
"dev": "run-p -l *:watch",
"release": "run-s *:release"
}
}