-
Notifications
You must be signed in to change notification settings - Fork 22
Expand file tree
/
Copy pathpackage.json
More file actions
67 lines (67 loc) · 1.65 KB
/
package.json
File metadata and controls
67 lines (67 loc) · 1.65 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
{
"name": "react-mui-pro-starter",
"version": "1.0.41",
"description": "React + Material UI all in one starter",
"license": "MIT",
"author": "Anton Karpenko <i@karpolan.com> (https://karpolan.com)",
"keywords": [
"react",
"mui",
"material",
"material ui",
"starter",
"react stater",
"create react app",
"create react app mui"
],
"repository": {
"type": "git",
"url": "https://github.com/karpolan/react-mui-pro-starter"
},
"dependencies": {
"@emotion/react": "latest",
"@emotion/styled": "latest",
"@mui/icons-material": "latest",
"@mui/material": "latest",
"axios": "latest",
"clsx": "latest",
"date-fns": "latest",
"loglevel": "latest",
"notistack": "latest",
"react": "latest",
"react-dom": "latest",
"react-idle-timer": "^4.6.4",
"react-router-dom": "latest",
"react-scripts": "latest",
"validate.js": "latest",
"web-vitals": "latest"
},
"devDependencies": {
"@testing-library/jest-dom": "latest",
"@testing-library/react": "latest",
"@testing-library/user-event": "latest",
"prettier": "latest"
},
"scripts": {
"start": "react-scripts start",
"dev": "react-scripts start",
"build": "react-scripts build",
"test": "react-scripts test",
"lint": "eslint --ext js src",
"lint:fix": "eslint --fix --ext js src",
"format": "prettier src --write",
"eject": "react-scripts eject"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
}
}