-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
79 lines (79 loc) · 2.23 KB
/
package.json
File metadata and controls
79 lines (79 loc) · 2.23 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
{
"name": "ecommerce-project",
"version": "0.1.0",
"private": true,
"dependencies": {
"@testing-library/jest-dom": "^5.16.1",
"@testing-library/react": "^12.1.2",
"@testing-library/user-event": "^13.5.0",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-scripts": "5.0.0",
"web-vitals": "^2.1.4"
},
"scripts": {
"start": "react-scripts start",
"build": "react-scripts build",
"test": "react-scripts test",
"eject": "react-scripts eject",
"custom-start": "env-cmd -f ./src/environment/.env.development env-cmd -f ./src/environment/.env.local react-scripts start",
"custom-build": "env-cmd -f ./src/environment/.env.production env-cmd -f ./src/environment/.env.local react-scripts build",
"backend": "node server",
"backend:dev": "nodemon server",
"backend:prod": "nodemon server",
"concurrently": "concurrently \"npm run custom-start\" \"npm run backend\" "
},
"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"
]
},
"devDependencies": {
"axios": "^0.25.0",
"concurrently": "^7.0.0",
"cors": "^2.8.5",
"env-cmd": "^10.1.0",
"html-to-react": "^1.4.8",
"jodit": "^3.14.3",
"jodit-react": "^1.2.6",
"json-server": "^0.17.0",
"jsonwebtoken": "^8.5.1",
"multer": "^1.4.4",
"nodemon": "^2.0.15",
"prop-types": "^15.8.1",
"react-date-object": "^2.1.5",
"react-debounce-input": "^3.2.5",
"react-easy-marquee": "^1.2.3",
"react-helmet": "^6.1.0",
"react-icons": "^4.3.1",
"react-loading": "^2.0.3",
"react-loading-skeleton": "^3.0.2",
"react-modal": "^3.14.4",
"react-multi-date-picker": "^3.3.0",
"react-redux": "^7.2.6",
"react-router-dom": "^6.2.1",
"react-select": "^5.2.2",
"react-table": "^7.7.0",
"react-tabs": "^3.2.3",
"react-toast-notifications": "^2.5.1",
"redux": "^4.1.2",
"redux-thunk": "^2.4.1",
"sweetalert": "^2.1.2",
"swiper": "^8.0.0",
"universal-navigate": "^1.2.1",
"yup": "^0.32.11"
}
}