-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
67 lines (67 loc) · 1.66 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
55
56
57
58
59
60
61
62
63
64
65
66
67
{
"name": "api2021",
"version": "1.0.0",
"private": true,
"dependencies": {
"@date-io/date-fns": "^1.3.13",
"@emotion/react": "^11.4.1",
"@emotion/styled": "^11.3.0",
"@material-ui/core": "latest",
"@material-ui/icons": "^4.11.2",
"@material-ui/pickers": "^3.3.10",
"@mui/material": "^5.0.3",
"@mui/x-data-grid": "^4.0.1",
"aos": "^2.3.4",
"bcrypt": "^5.0.1",
"concurrently": "^6.3.0",
"cookie-parser": "~1.4.5",
"cors": "2.8.5",
"debug": "^4.3.2",
"dotenv": "^10.0.0",
"express": "~4.17.1",
"handlebars": "^4.7.7",
"http-errors": "^1.8.0",
"jsonwebtoken": "^8.5.1",
"morgan": "~1.10.0",
"nodemailer": "^6.7.0",
"pg": "^8.7.1",
"prop-types": "^15.7.2",
"pug": "^3.0.2",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-material-ui-carousel": "^2.3.5",
"react-modal-image": "^2.5.0",
"react-router-dom": "^5.3.0",
"react-scripts": "4.0.3",
"web-vitals": "^2.1.1",
"validator": "^13.7.0",
"multer": "^1.4.3"
},
"scripts": {
"start-front": "react-scripts start",
"build": "react-scripts build",
"test": "react-scripts test",
"eject": "react-scripts eject",
"start-server": "node ./server/bin/www",
"start": "concurrently \"npm run start-server\" \"npm run start-front\""
},
"eslintConfig": {
"extends": [
"react-app",
"react-app/jest"
]
},
"proxy": "http://localhost:9000",
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
}
}