-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
28 lines (28 loc) · 791 Bytes
/
package.json
File metadata and controls
28 lines (28 loc) · 791 Bytes
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
{
"name": "demo",
"private": true,
"version": "0.0.0",
"type": "module",
"scripts": {
"dev": "vite",
"build": "vite build",
"preview": "vite preview",
"format": "prettier --write .",
"postinstall:copy-auth": "node -e \"require('fs').cpSync('node_modules/@junobuild/core/dist/workers/', './public/workers', {recursive: true});\"",
"postinstall": "npm run postinstall:copy-auth"
},
"devDependencies": {
"@junobuild/config": "^2.2.0",
"@junobuild/vite-plugin": "^4.3.0",
"@tailwindcss/vite": "^4.1.12",
"autoprefixer": "^10.4.21",
"prettier": "^3.6.2",
"tailwindcss": "^4.1.12",
"vite": "^7.1.4",
"vite-plugin-node-polyfills": "^0.24.0"
},
"dependencies": {
"@junobuild/core": "^2.2.0",
"nanoid": "^5.1.5"
}
}