-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathpackage.json
117 lines (117 loc) · 3.32 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
117
{
"name": "react-redux-typescript-boilerplate",
"version": "0.1.2",
"private": true,
"author": {
"name": "linus saisi",
"email": "[email protected]"
},
"license": "MIT",
"engines": {
"node": ">=14.0.0"
},
"dependencies": {
"@fortawesome/fontawesome-svg-core": "^6.1.1",
"@fortawesome/free-regular-svg-icons": "^6.1.1",
"@fortawesome/free-solid-svg-icons": "^6.1.1",
"@fortawesome/react-fontawesome": "^0.1.18",
"@reduxjs/toolkit": "^1.5.1",
"@testing-library/jest-dom": "^5.16.4",
"@testing-library/react": "^13.2.0",
"@testing-library/user-event": "^14.2.0",
"@types/jest": "^24.0.0",
"@types/node": "^12.0.0",
"@types/react": "^16.9.0",
"@types/react-dom": "^18.0.4",
"@types/react-redux": "^7.1.7",
"async-mutex": "^0.3.2",
"bootstrap": "^5.1.3",
"react": "^18.0.0",
"react-bootstrap": "^2.3.0",
"react-bootstrap-range-slider": "^3.0.4",
"react-device-detect": "^2.2.2",
"react-dom": "^18.0.0",
"react-redux": "^7.2.0",
"react-router-dom": "^6.3.0",
"react-scripts": "5.0.1",
"react-toastify": "^8.2.0",
"react-transition-group": "^4.4.2",
"sass": "^1.50.1",
"typescript": "~4.1.5"
},
"scripts": {
"start": "react-scripts start",
"build": "react-scripts build",
"test": "react-scripts test",
"test:nowatch": "react-scripts test --watchAll=false",
"test:coverage": "react-scripts test --watchAll=false --coverage",
"eject": "react-scripts eject",
"release": "standard-version",
"commit": "git add -A && cz",
"lint": "eslint .",
"lint:fix": "eslint --fix .",
"prettier": "prettier --check **/*.{js,jsx,ts,tsx}",
"prettier:fix": "prettier --write **/*.{js,jsx,ts,tsx}",
"prepare": "husky install"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"devDependencies": {
"@commitlint/cli": "^16.2.3",
"@commitlint/config-conventional": "^16.2.1",
"@testing-library/dom": "^8.13.0",
"@typescript-eslint/eslint-plugin": "^5.20.0",
"@typescript-eslint/parser": "^5.20.0",
"eslint": "^8.13.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-jsx-a11y": "^6.5.1",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-react": "^7.29.4",
"eslint-plugin-react-hooks": "^4.4.0",
"msw": "^0.39.2",
"husky": "^7.0.4",
"lint-staged": ">=10",
"prettier": "^2.6.2",
"standard-version": "^9.3.2",
"@ryansonshine/commitizen": "^4.2.8",
"@ryansonshine/cz-conventional-changelog": "^3.3.4"
},
"config": {
"commitizen": {
"path": "./node_modules/@ryansonshine/cz-conventional-changelog"
}
},
"lint-staged": {
"*.(js|ts|tsx|jsx)": "eslint --cache --fix --cache-location ./node_modules/.cache/.eslintcache"
},
"prettier": {
"singleQuote": true,
"printWidth": 125
},
"jest": {
"collectCoverageFrom": [
"src/modules/**/*.{js,jsx,ts,tsx}",
"!src/**/*.api.ts"
],
"coverageThreshold": {
"global": {
"branches": 80,
"functions": 80,
"lines": 90,
"statements": 90
}
}
}
}