-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
41 lines (41 loc) · 1.25 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
{
"scripts": {
"dev": "npm run server",
"prod": "npm run lint && npm run build && npm run server:prod",
"build": "vite build",
"build:ci": "pnpm panda codegen && vite build --base=/vps-panda-css",
"server": "ts-node ./server/index.ts",
"server:prod": "cross-env NODE_ENV=production ts-node ./server/index.ts",
"lint": "eslint . --max-warnings 0"
},
"dependencies": {
"@types/compression": "^1.7.2",
"@types/express": "^4.17.17",
"@types/node": "^18.16.17",
"@types/react": "^18.2.11",
"@types/react-dom": "^18.2.4",
"@typescript-eslint/eslint-plugin": "^6.0.0",
"@typescript-eslint/parser": "^6.0.0",
"@vitejs/plugin-react": "^4.0.0",
"compression": "^1.7.4",
"cross-env": "^7.0.3",
"eslint": "^8.42.0",
"eslint-plugin-react": "^7.32.2",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-react-refresh": "^0.4.0",
"express": "^4.18.2",
"postcss-flexbugs-fixes": "^5.0.2",
"postcss-preset-env": "^9.0.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"sirv": "^2.0.3",
"ts-node": "^10.9.1",
"typescript": "^5.0.0",
"vite": "^4.3.9",
"vite-plugin-ssr": "^0.4.131"
},
"type": "module",
"devDependencies": {
"@pandacss/dev": "^0.12.0"
}
}