-
Notifications
You must be signed in to change notification settings - Fork 895
/
package.json
35 lines (35 loc) · 1.02 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
{
"type": "module",
"scripts": {
"dev": "node 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": {
"@fastify/one-line-logger": "^1.2.0",
"@fastify/react": "^0.6.0",
"@fastify/vite": "^6.0.5",
"fastify": "^4.24.3",
"history": "^5.3.0",
"minipass": "^7.0.4",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-feather": "^2.0.10",
"react-leaflet": "^4.2.1",
"react-router-dom": "^6.20.0",
"unihead": "^0.0.6",
"valtio": "^1.12.0"
},
"devDependencies": {
"@vitejs/plugin-react": "^4.2.0",
"postcss": "^8.4.31",
"postcss-nesting": "^12.0.2",
"postcss-preset-env": "^7.7.1",
"tailwindcss": "^3.4.1",
"vite": "^5.0.2"
}
}