This repository has been archived by the owner on Dec 28, 2022. It is now read-only.
forked from etn-ccis/blui-react-design-patterns
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
111 lines (111 loc) · 4.08 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
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
100
101
102
103
104
105
106
107
108
109
110
111
{
"name": "react-design-patterns",
"version": "0.1.0",
"private": true,
"dependencies": {
"@brightlayer-ui/colors": "^3.0.1",
"@brightlayer-ui/icons-mui": "^3.0.0",
"@brightlayer-ui/react-components": "^6.0.0",
"@brightlayer-ui/react-progress-icons": "^2.1.1",
"@brightlayer-ui/react-themes": "^7.0.0",
"@emotion/react": "^11.8.2",
"@emotion/styled": "^11.8.1",
"@fontsource/noto-sans": "^4.5.4",
"@mui/icons-material": "^5.5.1",
"@mui/lab": "5.0.0-alpha.75",
"@mui/material": "^5.5.3",
"@mui/styles": "^5.5.3",
"@types/enzyme-adapter-react-16": "^1.0.6",
"color": "^4.2.1",
"i18next": "^21.6.12",
"i18next-browser-languagedetector": "^6.1.3",
"moment": "^2.29.4",
"node-sass": "^7.0.1",
"placeholder-loading": "^0.5.0",
"react": "^17.0.0",
"react-app-polyfill": "^3.0.0",
"react-dom": "^17.0.0",
"react-i18next": "^11.15.5",
"react-redux": "^7.2.0",
"react-router": "^5.1.2",
"react-router-dom": "^5.1.2",
"react-scripts": "^5.0.0",
"react-sortable-hoc": "^2.0.0",
"redux": "^4.0.5"
},
"scripts": {
"start": "react-scripts start",
"start:cytest": "react-scripts -r @cypress/instrument-cra start",
"build": "react-scripts build",
"test": "react-scripts test",
"eject": "react-scripts eject",
"lint": "eslint \"src/**/**.{tsx,ts}\"",
"lint:fix": "eslint \"src/**/**.{tsx,ts}\" --fix",
"prettier": "prettier \"src/**/**.{ts,tsx,js,jsx,json,css,scss,html}\" --write",
"prettier:check": "prettier \"src/**/**.{ts,tsx,js,jsx,json,css,scss,html}\" --check",
"cy:run": "cypress run",
"cypress:open": "cypress open",
"cytest": "start-server-and-test start:cytest http://localhost:3000 cy:run",
"precommit": "yarn prettier && yarn lint && yarn test",
"coverage": "yarn test --coverage --watchAll=false",
"codecov": "./node_modules/.bin/codecov -f coverage/coverage-final.json"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all",
"ie 11"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version",
"ie 11"
]
},
"author": "Brightlayer UI <[email protected]>",
"devDependencies": {
"@4tw/cypress-drag-drop": "^2.1.0",
"@babel/helper-call-delegate": "^7.11.4",
"@brightlayer-ui/eslint-config": "^2.0.0",
"@brightlayer-ui/prettier-config": "^1.0.2",
"@cypress/code-coverage": "^3.9.8",
"@cypress/instrument-cra": "^1.4.0",
"@cypress/react": "^5.12.3",
"@cypress/webpack-dev-server": "^1.8.1",
"@testing-library/jest-dom": "^5.16.2",
"@testing-library/react": "^12.1.3",
"@testing-library/user-event": "^13.0.0",
"@types/color": "^3.0.3",
"@types/enzyme": "^3.10.11",
"@types/jest": "^27.4.1",
"@types/node": "^17.0.21",
"@types/react": "^17.0.39",
"@types/react-dom": "^17.0.0",
"@types/react-redux": "^7.1.22",
"@types/react-router-dom": "^5.3.3",
"@typescript-eslint/eslint-plugin": "^4.0.0",
"@typescript-eslint/parser": "^4.0.0",
"@wojtekmaj/enzyme-adapter-react-17": "^0.6.0",
"babel-plugin-istanbul": "^6.0.0",
"chai": "^4.3.6",
"chance": "^1.1.6",
"cypress": "^8.0.0",
"enzyme": "^3.10.0",
"enzyme-adapter-react-16": "^1.14.0",
"eslint": "^7.0.0",
"eslint-config-prettier": "^8.4.0",
"eslint-plugin-react": "^7.28.0",
"firebase-tools": "^10.8.0",
"mocha": "^9.2.1",
"prettier": "^2.0.0",
"start-server-and-test": "^1.12.1",
"typescript": "^4.6.2",
"yarn-audit-fix": "^9.1.2"
},
"prettier": "@brightlayer-ui/prettier-config",
"nyc": {
"report-dir": "cypress-coverage"
}
}