-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 1003 Bytes
/
Copy pathpackage.json
File metadata and controls
34 lines (34 loc) · 1003 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
29
30
31
32
33
34
{
"type": "module",
"scripts": {
"dev": "nodemon --legacy-watch server.js --dev",
"start": "node server.js",
"build": "npm run build:client && npm run build:server",
"build:client": "vite build --outDir dist/client --ssrManifest",
"build:server": "vite build --outDir dist/server --ssr /index.js",
"devinstall": "zx ../../devinstall.mjs -- node server.js --dev",
"lint": "eslint . --ext .js,.jsx --fix"
},
"dependencies": {
"dotenv": "^16.6.1",
"express": "^4.21.2",
"history": "^5.3.0",
"js-yaml": "^4.1.1",
"minipass": "^7.0.4",
"mysql2": "^3.16.0",
"puppeteer": "^24.34.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-feather": "^2.0.10",
"react-router-dom": "^6.20.0"
},
"devDependencies": {
"@vitejs/plugin-react": "^4.3.4",
"nodemon": "^3.1.10",
"postcss": "^8.4.31",
"postcss-nesting": "^12.0.2",
"postcss-preset-env": "^7.7.1",
"tailwindcss": "^3.4.1",
"vite": "^5.0.2"
}
}