-
Notifications
You must be signed in to change notification settings - Fork 12
Expand file tree
/
Copy pathpackage.json
More file actions
85 lines (85 loc) · 2.52 KB
/
package.json
File metadata and controls
85 lines (85 loc) · 2.52 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
{
"name": "react-mad-boiler",
"version": "1.0.0",
"private": true,
"dependencies": {
"@testing-library/jest-dom": "^5.11.4",
"@testing-library/react": "^11.2.5",
"@testing-library/user-event": "^12.7.1",
"axios": "^0.21.0",
"node-sass": "^4.0.0",
"prop-types": "^15.7.2",
"react": "^17.0.1",
"react-dom": "^17.0.1",
"react-helmet": "^6.1.0",
"react-router-dom": "^5.2.0",
"react-scripts": "4.0.0",
"react-use": "^17.1.1",
"styled-components": "^5.2.1",
"uniqid": "^5.2.0"
},
"scripts": {
"docker:dev": "docker-compose -f docker-compose.dev.yml up",
"docker:prod": "docker-compose -f docker-compose.prod.yml up",
"lint:css": "stylelint './src/**/*.js'",
"lint:js": "eslint --ext jsx,js src/",
"lint:js:fix": "eslint --ext jsx,js --fix src/",
"lint:all": "yarn lint:css && yarn lint:js",
"start": "react-scripts start",
"build": "react-scripts build",
"test": "react-scripts test --watchAll",
"test:coverage": "yarn test --coverage",
"test:ci": "CI=true yarn test:coverage --watchAll=false",
"create:component": "node cli/create-component"
},
"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"
]
},
"devDependencies": {
"@testing-library/react-hooks": "^5.0.3",
"babel-eslint": "^10.1.0",
"eslint": "^7.20.0",
"eslint-config-airbnb": "^18.2.1",
"eslint-config-prettier": "^7.2.0",
"eslint-config-react-app": "^6.0.0",
"eslint-plugin-flowtype": "^5.2.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-prettier": "^3.3.1",
"eslint-plugin-react": "^7.22.0",
"eslint-plugin-react-hooks": "^4.2.0",
"jest-styled-components": "^7.0.3",
"prettier": "^2.2.1",
"stylelint": "^13.10.0",
"stylelint-config-recommended": "^3.0.0",
"stylelint-config-styled-components": "^0.1.1",
"stylelint-processor-styled-components": "^1.10.0"
},
"jest": {
"coverageThreshold": {
"global": {
"branches": 80,
"functions": 80,
"lines": 80,
"statements": -10
}
},
"coverageReporters": ["html", "text"],
"coveragePathIgnorePatterns": ["/node_modules", "/src/styles/*", "/src/assets/*", "/src/test.utils.js", "/src/index.js", "/src/config/*", "/cli"]
}
}