-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathpackage.json
30 lines (30 loc) · 1.06 KB
/
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
{
"scripts": {
"shadow:watch": "shadow-cljs watch app",
"shadow:release": "shadow-cljs release app",
"postcss:build": "postcss src/css/tailwind.css -o ./public/css/app.css --verbose",
"postcss:watch": "postcss src/css/tailwind.css -o ./public/css/app.css --verbose -w",
"postcss:release": "cross-env NODE_ENV=production postcss src/css/tailwind.css -o ./public/css/app.css --verbose",
"dev": "run-p -l *:watch",
"release": "run-s *:release"
},
"dependencies": {
"@inertiajs/inertia": "^0.10.0",
"@inertiajs/inertia-react": "^0.7.0",
"@inertiajs/progress": "^0.2.6",
"react": "17.0.1",
"react-dom": "17.0.1"
},
"devDependencies": {
"autoprefixer": "^10.2.6",
"cross-env": "^7.0.3",
"cssnano": "^5.0.6",
"npm-run-all": "^4.1.5",
"postcss": "^8.3.1",
"postcss-cli": "^8.3.1",
"postcss-import": "^14.0.2",
"postcss-nesting": "^8.0.1",
"shadow-cljs": "^2.14.2",
"tailwindcss": "^2.0.4"
}
}