forked from etn-ccis/blui-react-showcase-demo
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
99 lines (99 loc) · 3.47 KB
/
package.json
File metadata and controls
99 lines (99 loc) · 3.47 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
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
{
"name": "react-showcase-demo",
"version": "2.0.0",
"private": true,
"scripts": {
"start": "react-scripts start",
"build": "react-scripts build",
"test": "react-scripts test",
"eject": "react-scripts eject",
"lint": "eslint \"**/**/*.{ts,tsx}\"",
"lint:fix": "eslint \"**/**/*.{ts,tsx}\" --fix",
"prettier": "prettier \"**/**/*.{ts,tsx,js,jsx,json,css,scss,html,md}\" --write",
"prettier:check": "prettier \"**/**/*.{ts,tsx,js,jsx,json,css,scss,html,md}\" --check",
"precommit": "yarn && yarn prettier && yarn lint && yarn test",
"coverage": "yarn test --coverage --watchAll=false",
"analyze": "source-map-explorer 'build/static/js/*.js'"
},
"dependencies": {
"@brightlayer-ui/colors": "^3.1.1",
"@brightlayer-ui/icons-mui": "^3.0.0",
"@brightlayer-ui/react-components": "^6.1.0",
"@brightlayer-ui/react-progress-icons": "^2.1.1",
"@brightlayer-ui/react-themes": "^7.0.0",
"@date-io/date-fns": "^2.13.1",
"@emotion/css": "^11.9.0",
"@emotion/react": "^11.7.1",
"@emotion/styled": "^11.6.0",
"@mui/base": "^5.0.0-alpha.75",
"@mui/codemod": "^5.4.1",
"@mui/docs": "^5.4.1",
"@mui/envinfo": "^2.0.5",
"@mui/icons-material": "^5.4.1",
"@mui/lab": "^5.0.0-alpha.76",
"@mui/material": "^5.4.1",
"@mui/private-theming": "^5.4.1",
"@mui/styled-engine": "^5.4.1",
"@mui/styled-engine-sc": "^5.4.1",
"@mui/styles": "^5.4.1",
"@mui/system": "^5.4.1",
"@mui/types": "^7.1.1",
"@types/jest": "^27.4.1",
"@types/node": "^17.0.23",
"@types/react": "^17.0.39",
"@types/react-dom": "^17.0.11",
"clsx": "^1.1.1",
"date-fns": "^2.22.1",
"jss-rtl": "^0.3.0",
"prop-types": "^15.7.2",
"react": "^17.0.0",
"react-app-polyfill": "^3.0.0",
"react-dom": "^17.0.0",
"react-redux": "^7.2.1",
"react-router-dom": "^5.1.2",
"react-scripts": "^5.0.0",
"redux": "^4.0.5",
"redux-thunk": "^2.3.0",
"stylis": "^4.0.13",
"stylis-plugin-rtl": "^2.1.1",
"typescript": "^4.0.2"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all",
"IE 11",
"not IE 9-10"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version",
"ie 11",
"not ie 9-10"
]
},
"devDependencies": {
"@brightlayer-ui/eslint-config": "^3.0.1",
"@brightlayer-ui/prettier-config": "^1.0.3",
"@testing-library/jest-dom": "^5.11.0",
"@testing-library/react": "^13.0.0",
"@testing-library/user-event": "^14.0.4",
"@types/react-redux": "^7.1.9",
"@types/react-router-dom": "^5.1.5",
"@types/react-test-renderer": "^17.0.1",
"@typescript-eslint/eslint-plugin": "^5.12.1",
"@typescript-eslint/parser": "^5.12.0",
"codecov": "^3.8.2",
"enzyme": "^3.11.0",
"eslint": "^8.9.0",
"eslint-config-prettier": "^8.4.0",
"eslint-plugin-react": "^7.29.0",
"firebase-tools": "^11.0.1",
"prettier": "^2.0.0",
"prop-types": "^15.7.2",
"source-map-explorer": "^2.5.0"
},
"prettier": "@brightlayer-ui/prettier-config"
}