-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
54 lines (54 loc) · 1.56 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
42
43
44
45
46
47
48
49
50
51
52
53
54
{
"name": "simple-vite-react-express",
"version": "1.0.0",
"description": "Boilerplate to build fullstack app using react, express, vite and pg",
"main": "src/server/index.js",
"type": "module",
"scripts": {
"build": "npx vite build",
"start": "npm run build && node src/server/index.js",
"server": "nodemon src/server/index.js",
"client": "npx vite",
"dev": "concurrently \"npm run server\" \"npm run client\"",
"migrate": "npx prisma migrate dev"
},
"author": "Avi Maiti",
"license": "ISC",
"dependencies": {
"@emotion/react": "^11.14.0",
"@emotion/styled": "^11.14.0",
"@mui/icons-material": "^6.4.0",
"@mui/material": "^6.4.0",
"@mui/styles": "^6.4.0",
"@prisma/client": "^6.2.1",
"axios": "^1.7.9",
"celebrate": "^15.0.3",
"concurrently": "^9.1.2",
"dotenv": "^16.4.7",
"express": "^4.21.2",
"express-rate-limit": "^7.5.0",
"formik": "^2.4.6",
"fs-extra": "^11.2.0",
"helmet": "^8.0.0",
"lodash": "^4.17.21",
"mui-file-input": "^6.0.0",
"multer": "^1.4.5-lts.1",
"prisma": "^6.2.1",
"react": "^19.0.0",
"react-dom": "^19.0.0",
"react-router-dom": "^7.1.1",
"react-toastify": "^11.0.3",
"strong-error-handler": "^5.0.15",
"yup": "^1.6.1"
},
"devDependencies": {
"@babel/core": "^7.26.0",
"@babel/plugin-proposal-class-properties": "^7.18.6",
"@babel/preset-env": "^7.26.0",
"@babel/preset-react": "^7.26.3",
"@vitejs/plugin-react-refresh": "^1.3.6",
"nodemon": "^3.1.9",
"terser": "^5.37.0",
"vite": "^6.0.7"
}
}