This repository has been archived by the owner on Feb 18, 2025. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
executable file
·70 lines (70 loc) · 1.94 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
68
69
70
{
"name": "foodcart-client",
"author": "Habib Haidari",
"email": "habibhaidari@outlook.com",
"licence": "IDK, just mention the repo pls",
"version": "0.5.0",
"private": true,
"scripts": {
"serve": "webpack serve --mode development --host 0.0.0.0",
"build": "webpack --mode production"
},
"eslintConfig": {
"extends": "react-app"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"dependencies": {
"@material-ui/core": "4.11.2",
"@material-ui/icons": "4.11.2",
"@material-ui/lab": "4.0.0-alpha.57",
"@material-ui/styles": "4.11.2",
"axios": "0.21.1",
"react": "17.0.1",
"react-dom": "17.0.1",
"react-lazyload": "3.1.0",
"react-router-dom": "5.2.0",
"validate.js": "0.13.1"
},
"devDependencies": {
"prop-types": "15.7.2",
"@babel/core": "7.12.10",
"@babel/plugin-proposal-class-properties": "7.12.1",
"@babel/plugin-syntax-dynamic-import": "7.8.3",
"@babel/plugin-transform-runtime": "7.12.10",
"@babel/preset-env": "7.12.11",
"@babel/preset-react": "7.12.10",
"babel-loader": "8.2.2",
"babel-plugin-import": "1.13.3",
"babel-plugin-transform-react-remove-prop-types": "0.4.24",
"css-loader": "5.0.1",
"dotenv": "8.2.0",
"dotenv-webpack": "6.0.0",
"eslint": "7.17.0",
"eslint-plugin-react": "7.22.0",
"html-webpack-plugin": "4.5.1",
"mini-css-extract-plugin": "1.3.3",
"node-sass": "5.0.0",
"preload-webpack-plugin": "3.0.0-beta.4",
"prettier": "2.2.1",
"prettier-eslint": "12.0.0",
"prettier-eslint-cli": "5.0.0",
"react-scripts": "4.0.1",
"sass-loader": "10.1.0",
"style-loader": "2.0.0",
"webpack": "5.11.1",
"webpack-cli": "4.3.1",
"webpack-pwa-manifest": "4.3.0",
"workbox-webpack-plugin": "^6.0.2"
}
}