-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
56 lines (56 loc) · 1.68 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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
{
"scripts": {
"dev": "vite dev",
"prod": "pnpm run lint && npm run build && npm run server:prod",
"build": "vite build",
"server": "node --loader ts-node/esm ./server/index.ts",
"server:dev": "pnpm run server",
"server:prod": "cross-env NODE_ENV=production npm run server",
"lint": "eslint . --max-warnings 0",
"generate-pwa-assets": "pwa-assets-generator --preset minimal-2023 public/logo.svg"
},
"dependencies": {
"compression": "^1.7.4",
"cropperjs": "^1.6.2",
"cross-env": "^7.0.3",
"express": "^4.18.2",
"firebase": "^11.1.0",
"lucide-react": "^0.468.0",
"node-fetch": "^3.3.2",
"react": "^18.2.0",
"react-cropper": "^2.3.3",
"react-dom": "^18.2.0",
"react-svg": "^16.2.0",
"react-toastify": "^10.0.6",
"sirv": "^2.0.3",
"ts-node": "^10.9.1",
"ts-pattern": "^5.6.0",
"workbox-window": "^7.3.0",
"zustand": "^5.0.2"
},
"type": "module",
"devDependencies": {
"@types/compression": "^1.7.5",
"@types/express": "^4.17.21",
"@types/node": "^20.10.4",
"@types/react": "^18.2.42",
"@types/react-dom": "^18.2.17",
"@typescript-eslint/eslint-plugin": "^6.13.2",
"@typescript-eslint/parser": "^6.13.2",
"@vite-pwa/assets-generator": "^0.2.6",
"@vitejs/plugin-react": "^4.2.1",
"autoprefixer": "^10.4.20",
"daisyui": "^4.12.14",
"eslint": "^8.55.0",
"eslint-plugin-react": "^7.33.2",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-react-refresh": "^0.4.5",
"postcss": "^8.4.49",
"sass": "^1.82.0",
"tailwindcss": "^3.4.16",
"typescript": "^5.4.0",
"vike": "^0.4.206",
"vite": "^5.4.0",
"vite-plugin-pwa": "^0.21.1"
}
}