-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
116 lines (116 loc) · 3.22 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
112
113
114
115
116
{
"name": "botaprarodar",
"version": "0.1.0",
"private": true,
"dependencies": {
"@hookform/resolvers": "^2.9.11",
"@material-ui/core": "^4.12.3",
"@material-ui/icons": "^4.11.2",
"apexcharts": "3.36.3",
"axios": "^0.21.1",
"chart.js": "^3.5.0",
"clsx": "^1.1.1",
"firebase": "^8.8.1",
"history": "^5.0.1",
"nth-check": "^2.1.1",
"react": "^17.0.2",
"react-apexcharts": "^1.3.9",
"react-chartjs-2": "^3.0.4",
"react-dom": "^17.0.2",
"react-hook-form": "^7.13.0",
"react-input-mask": "^2.0.4",
"react-router-dom": "^5.3.3",
"react-scripts": "^5.0.1",
"react-toastify": "^9.1.1",
"react-viewer": "^3.2.2",
"sass": "^1.37.5",
"serve": "^12.0.0",
"typescript": "^4.1.2",
"uuid": "^8.3.2",
"web-vitals": "^1.0.1",
"yup": "^1.0.0"
},
"scripts": {
"start": "react-scripts start",
"build": "react-scripts build",
"lint": "npx eslint 'src/**/**/**/**' --ext .tsx,.ts",
"lint:fix": "npx eslint 'src/**/**/**/**' --fix",
"lint:format": "npx prettier --write 'src/**/**/**/**/*.ts' 'src/**/**/**/**/*.tsx' ",
"test": "react-scripts test --passWithNoTests",
"test-husky": "react-scripts test --watchAll=false --bail",
"test-coverage": "react-scripts test --watchAll=false --coverage",
"eject": "react-scripts eject",
"heroku": "serve -s build",
"heroku-prebuild": "npm install -g serve",
"prepare": "husky install",
"commit": "git-cz"
},
"eslintConfig": {
"extends": [
"react-app",
"react-app/jest"
]
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"jest": {
"collectCoverageFrom": [
"src/**/*.{jsx,ts,tsx}",
"!src/**/index.{jsx,ts,tsx}",
"!src/**/models/*.{jsx,ts,tsx}",
"!src/**/mocks/*.{jsx,ts,tsx}",
"!<rootDir>/node_modules/"
],
"coverageThreshold": {
"global": {
"branches": 60,
"functions": 54,
"lines": 64,
"statements": 64
}
}
},
"devDependencies": {
"@commitlint/cli": "^13.1.0",
"@testing-library/jest-dom": "^5.11.4",
"@testing-library/react": "^11.1.0",
"@testing-library/user-event": "^12.1.10",
"@types/jest": "^26.0.15",
"@types/node": "^12.0.0",
"@types/react": "^17.0.48",
"@types/react-dom": "^17.0.17",
"@types/react-router-dom": "^5.3.3",
"@typescript-eslint/eslint-plugin": "^4.28.5",
"@typescript-eslint/parser": "^4.33.0",
"commitizen": "^4.2.4",
"conventional-changelog-conventionalcommits": "^4.6.0",
"cz-customizable": "^7.0.0",
"eslint": "^7.0.0",
"eslint-config-airbnb": "18.2.1",
"eslint-config-prettier": "^8.3.0",
"eslint-import-resolver-typescript": "^3.4.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-react": "^7.31.10",
"eslint-plugin-react-hooks": "4.2.0",
"husky": "^7.0.0",
"prettier": "^2.3.2",
"typescript": "^4.7.4"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-customizable"
}
}
}