-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
80 lines (80 loc) · 2.1 KB
/
package.json
File metadata and controls
80 lines (80 loc) · 2.1 KB
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
68
69
70
71
72
73
74
75
76
77
78
79
80
{
"name": "app",
"version": "0.1.0",
"private": true,
"dependencies": {
"@ckeditor/ckeditor5-build-classic": "^31.0.0",
"@ckeditor/ckeditor5-react": "^3.0.3",
"@emotion/react": "^11.5.0",
"@emotion/styled": "^11.3.0",
"@gorhom/bottom-sheet": "^4",
"@mui/icons-material": "^5.2.0",
"@mui/material": "^5.0.6",
"@mui/styles": "^5.0.2",
"@mui/x-data-grid": "^5.0.0-beta.6",
"@testing-library/jest-dom": "^5.14.1",
"@testing-library/react": "^11.2.7",
"@testing-library/user-event": "^12.8.3",
"antd": "^3.20.5",
"axios": "^0.21.4",
"bootstrap": "^5.1.3",
"cors": "^2.8.5",
"customize-cra": "^0.4.1",
"express": "^4.17.1",
"http-proxy-middleware": "^2.0.1",
"joi": "^17.4.2",
"jquery": "^3.6.0",
"jsonwebtoken": "^8.5.1",
"less": "^3.9.0",
"less-loader": "^5.0.0",
"mysql2": "^2.3.0",
"nodemon": "^2.0.13",
"npm-run-all": "^4.1.5",
"passport": "^0.5.0",
"passport-jwt": "^4.0.0",
"passport-local": "^1.0.0",
"query-string": "^6.8.1",
"react": "^17.0.2",
"react-app-rewired": "^2.1.3",
"react-bootstrap": "^2.0.2",
"react-dom": "^17.0.2",
"react-native-gesture-handler": "^2.1.0",
"react-native-reanimated": "^2.3.0",
"react-router-dom": "^5.3.0",
"react-scripts": "4.0.3",
"react-slick": "^0.28.1",
"react-useragent": "^1.1.2",
"recoil": "^0.5.2",
"recoil-persist": "^4.0.0",
"sequelize": "^6.6.5",
"slick-carousel": "^1.8.1",
"styled-components": "^5.3.3",
"web-vitals": "^1.1.2"
},
"scripts": {
"start": "npm-run-all -p starts:**",
"starts:client": "react-scripts start",
"starts:server": "nodemon ./api/server.js",
"build": "react-scripts build",
"test": "react-scripts test",
"eject": "react-scripts eject"
},
"eslintConfig": {
"extends": [
"react-app",
"react-app/jest"
]
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
}
}