-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 1.19 KB
/
package.json
File metadata and controls
33 lines (33 loc) · 1.19 KB
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
{
"scripts": {
"clean:release": "rm -r public/css/* public/js/*",
"shadow:watch": "shadow-cljs watch app",
"shadow:release": "shadow-cljs release app",
"postcss:build": "cross-env TAILWIND_MODE=build postcss src/css/tailwind.css -o ./public/css/main.css --verbose",
"postcss:watch": "cross-env TAILWIND_MODE=watch postcss src/css/tailwind.css -o ./public/css/main.css --verbose -w",
"postcss:release": "cross-env NODE_ENV=production postcss src/css/tailwind.css -o ./public/css/main.css --verbose",
"dev": "run-p -l *:watch",
"release": "run-s *:release",
"deploy:dev": "npm run release && netlify deploy --dir=public",
"deploy:prod": "netlify deploy --dir=public --prod"
},
"devDependencies": {
"@tailwindcss/forms": "^0.5.0",
"autoprefixer": "^10.4.4",
"cssnano": "^5.1.5",
"netlify-cli": "^9.16.4",
"npm-run-all": "^4.1.5",
"postcss": "^8.4.12",
"postcss-cli": "^9.1.0",
"shadow-cljs": "^2.17.8",
"tailwindcss": "^3.0.23",
"highlight.js": "11.1.0"
},
"dependencies": {
"@headlessui/react": "^1.5.0",
"create-react-class": "15.7.0",
"cross-env": "^7.0.3",
"react": "17.0.2",
"react-dom": "17.0.2"
}
}