-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
84 lines (84 loc) · 2.35 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
{
"name": "e2e-dashboard",
"version": "0.1.0",
"private": true,
"homepage": "https://aman-codes.github.io/e2e-dashboard",
"dependencies": {
"@material-ui/core": "4.11.4",
"@material-ui/data-grid": "^4.0.0-alpha.37",
"@material-ui/icons": "^4.9.1",
"@material-ui/lab": "^4.0.0-alpha.60",
"@testing-library/jest-dom": "^5.11.10",
"@testing-library/react": "^11.2.6",
"axios": "^0.21.4",
"date-fns": "^2.24.0",
"i18next": "^19.7.0",
"i18next-browser-languagedetector": "^6.0.1",
"i18next-http-backend": "^1.0.19",
"js-yaml": "^4.1.0",
"litmus-ui": "1.6.1",
"query-string": "^7.0.1",
"react": "^16.9.0",
"react-dom": "^16.9.0",
"react-i18next": "^11.7.2",
"react-router-dom": "^5.1.2",
"react-scripts": "^4.0.3"
},
"scripts": {
"start": "react-scripts start",
"build": "react-scripts build",
"eject": "react-scripts eject",
"lint": "eslint src/ --fix",
"format": "prettier --write \"src/**/*.+(js|jsx|json)\" && eslint \"src/**/*.+(js|jsx|json)\" --fix",
"checkformat": "prettier --check \"src/**/*.+(js|jsx|json)\" && eslint \"src/**/*.+(js|jsx|json)\"",
"predeploy": "yarn run build",
"deploy": "gh-pages -d build",
"test": "react-scripts test --maxWorkers=2",
"test:clean": "react-scripts test --clearCache",
"test:watch": "yarn test --watch",
"test:coverage": "yarn test --coverage --colors --maxWorkers=2"
},
"lint-staged": {
"src/**/*.+(js|jsx)": [
"yarn run format",
"git add"
],
"src/**/*.+(json|md)": [
"yarn run format"
],
"src/**/*.+(css|scss)": [
"yarn run format"
]
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"devDependencies": {
"eslint": "^7.11.0",
"eslint-config-airbnb": "18.2.1",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-jsx-a11y": "^6.3.1",
"eslint-plugin-prettier": "^3.1.4",
"eslint-plugin-react": "^7.20.1",
"eslint-plugin-react-hooks": "^2.5.0",
"gh-pages": "^3.2.3",
"husky": "^4.3.0",
"lint-staged": "^11.2.3",
"prettier": "^2.0.5"
}
}