-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
38 lines (38 loc) · 1007 Bytes
/
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
{
"name": "fossephate-site",
"version": "0.0.0",
"type": "module",
"scripts": {
"dev": "npm run server",
"build": "vite build",
"preview": "vite preview --port 4000",
"server": "node ./server",
"server:prod": "cross-env NODE_ENV=production PORT=4000 node ./server"
},
"dependencies": {
"@types/compression": "^1.7.2",
"@types/express": "^4.17.14",
"@types/node": "^17.0.45",
"@types/react": "^18.0.20",
"@types/react-dom": "^18.0.6",
"@vitejs/plugin-react": "^1.3.2",
"autoprefixer": "^10.4.11",
"axios": "^1.2.4",
"compression": "^1.7.4",
"cross-env": "^7.0.3",
"express": "^4.18.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"sirv": "^2.0.2",
"ts-node": "^10.9.1",
"typescript": "^4.8.3",
"vite": "^3.1.2",
"vite-plugin-ssr": "^0.4.35",
"ws": "^8.12.0"
},
"devDependencies": {
"@windicss/plugin-animations": "^1.0.9",
"vite-plugin-windicss": "^1.8.8",
"windicss": "^3.5.6"
}
}