-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
31 lines (31 loc) · 896 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
31
{
"name": "mhhhsupps",
"private": true,
"version": "0.0.0",
"type": "module",
"scripts": {
"vite:dev": "vite",
"vite:build": "tsc && vite build",
"css:dev": "postcss -o src/styles/index.css src/styles/index.pcss -w --verbose",
"css:build": "cross-env NODE_ENV=production postcss -o src/styles/index.css src/styles/index.pcss",
"dev": "npm-run-all --parallel vite:dev css:dev",
"build": "tsc && vite build && yarn css:build",
"preview": "vite preview"
},
"dependencies": {
"@formkit/auto-animate": "^0.8.1",
"preact": "^10.16.0"
},
"devDependencies": {
"@preact/preset-vite": "^2.5.0",
"autoprefixer": "^10.4.16",
"cross-env": "^7.0.3",
"cssnano": "^6.0.1",
"npm-run-all": "^4.1.5",
"postcss": "^8.4.31",
"postcss-cli": "^10.1.0",
"tailwindcss": "^3.3.5",
"typescript": "^5.0.2",
"vite": "^4.4.5"
}
}