-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
43 lines (43 loc) · 1.81 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
{
"type": "module",
"scripts": {
"dev": "bun install && bun run start:dev",
"start:dev": "date; dotenvx run -- node ./server",
"start": "dotenvx run -- cross-env NODE_ENV=production node ./server",
"prod:dev": "bun install --production && bun run lint:dev && bun run build:dev && bun run start:dev",
"prod": "bun install --production && bun run lint && bun run build && bun run start",
"build:dev": "dotenvx run -- vite build",
"build": "dotenvx run -- cross-env NODE_ENV=production vite build",
"lint:dev": "dotenvx run -- eslint . --max-warnings 0",
"lint": "dotenvx run -- cross-env NODE_ENV=production eslint . --max-warnings 0",
"update:all": "bun add @vitejs/plugin-react compression @dotenvx/dotenvx eslint eslint-plugin-react eslint-plugin-react-hooks eslint-plugin-react-refresh express prop-types react react-dom react-icons sirv vike vite"
},
"dependencies": {
"@dotenvx/dotenvx": "^0.35.1",
"@vitejs/plugin-react": "^4.2.1",
"autoprefixer": "^10.4.19",
"clsx": "^2.1.0",
"compression": "^1.7.4",
"cross-env": "^7.0.3",
"dateformat": "^5.0.3",
"eslint": "^9.1.0",
"eslint-plugin-react": "^7.34.1",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-react-refresh": "^0.4.6",
"express": "^4.19.2",
"postcss": "^8.4.38",
"prop-types": "^15.8.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-hot-toast": "^2.4.1",
"react-icons": "^5.1.0",
"sirv": "^2.0.4",
"sweetalert2": "^11.10.8",
"tailwind-merge": "^2.3.0",
"tailwindcss": "^3.4.3",
"tailwindcss-animate": "^1.0.7",
"vike": "^0.4.171",
"vite": "^5.2.10",
"zustand": "^4.5.2"
}
}