-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
30 lines (30 loc) · 1.03 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
{
"name": "uix-starter",
"type": "module",
"scripts": {
"dev": "shadow-cljs -A:dev watch app & pnpm run styles-dev",
"release": "shadow-cljs -A:dev release app && pnpm run styles-release",
"styles-dev": "onchange -o '> public/main.css && lightningcss --bundle public/main.css -o public/main.css' -i src/**/*.css -- cat src/**/*.css",
"styles-release": "cat src/**/*.css > public/main.css && lightningcss --minify --bundle public/main.css -o public/main.css"
},
"devDependencies": {
"@testing-library/dom": "^10.3.1",
"@testing-library/jest-dom": "^6.4.6",
"@testing-library/react": "^16.0.0",
"@testing-library/user-event": "^14.5.2",
"@vitejs/plugin-react": "^4.3.1",
"@vitest/browser": "^1.6.0",
"accname": "^1.1.0",
"lightningcss-cli": "^1.15.1",
"onchange": "^7.1.0",
"playwright": "^1.45.1",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-refresh": "^0.14.2",
"shadow-cljs": "2.28.10",
"vitest": "^1.6.0"
},
"dependencies": {
"scheduler": "^0.23.2"
}
}