-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
51 lines (51 loc) · 1.49 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
{
"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.11.4",
"@emotion/styled": "^11.11.5",
"@mui/icons-material": "^5.15.15",
"@mui/material": "^5.15.15",
"@mui/styles": "^5.15.15",
"@prisma/client": "^5.12.1",
"axios": "^1.6.8",
"celebrate": "^15.0.3",
"concurrently": "^8.2.2",
"express": "^4.19.2",
"formik": "^2.4.5",
"fs-extra": "^11.2.0",
"lodash": "^4.17.21",
"mui-file-input": "^4.0.4",
"multer": "^1.4.5-lts.1",
"prisma": "^5.12.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-router-dom": "^6.22.3",
"react-toastify": "^10.0.5",
"strong-error-handler": "^5.0.8",
"yup": "^1.4.0"
},
"devDependencies": {
"@babel/core": "^7.24.4",
"@babel/plugin-proposal-class-properties": "^7.18.6",
"@babel/preset-env": "^7.24.4",
"@babel/preset-react": "^7.24.1",
"@vitejs/plugin-react-refresh": "^1.3.6",
"nodemon": "^3.1.0",
"terser": "^5.30.3",
"vite": "^5.2.10"
}
}