-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
34 lines (34 loc) · 971 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
{
"name": "template-js",
"type": "module",
"version": "1.0.0",
"private": true,
"source": ["app", "src"],
"scripts": {
"start": "NODE_ENV=production node src/server.js",
"dev": "concurrently \"NODE_ENV=development nodemon src/server.js\" \"tailwindcss -i ./app/App.css -o ./app/tailwind.css --watch\"",
"build": "tailwindcss -i ./app/App.css -o ./app/tailwind.css --minify && vite build"
},
"dependencies": {
"axios": "^1.7.7",
"cors": "^2.8.5",
"dotenv": "^10.0.0",
"express": "^4.17.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-router-dom": "^6.27.0",
"winston": "^3.15.0",
"zod": "^3.23.8"
},
"devDependencies": {
"@vitejs/plugin-react": "^4.3.2",
"autoprefixer": "^10.4.14",
"concurrently": "^9.0.1",
"nodemon": "^3.1.7",
"postcss": "^8.4.24",
"tailwindcss": "^3.4.13",
"vite": "^5.4.8",
"terser": "^5.36.0",
"vite-plugin-compression2": "^0.12.0"
}
}