-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
94 lines (94 loc) · 2.56 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
{
"name": "redux-v-context",
"version": "0.1.0",
"private": true,
"dependencies": {
"@reduxjs/toolkit": "^1.7.0",
"@types/node": "^16.11.11",
"@types/react": "^17.0.37",
"@types/react-dom": "^17.0.11",
"@types/react-redux": "^7.1.20",
"@types/redux-logger": "^3.0.9",
"classnames": "^2.3.1",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-modal": "^3.14.4",
"react-redux": "^7.2.6",
"react-router-dom": "5",
"react-scripts": "4.0.3",
"redux": "^4.1.2",
"redux-logger": "^3.0.6",
"redux-saga": "^1.1.3",
"sass": "^1.44.0",
"serve": "^13.0.2",
"typescript": "^4.5.2"
},
"devDependencies": {
"@testing-library/dom": "^8.11.1",
"@testing-library/jest-dom": "^5.15.1",
"@testing-library/react": "^12.1.2",
"@testing-library/user-event": "^13.5.0",
"@types/jest": "^27.0.3",
"@types/react-modal": "^3.13.1",
"@types/react-router-dom": "^5.3.2",
"eslint": "^7.32.0",
"eslint-config-prettier": "^8.1.0",
"eslint-plugin-jest": "^25.3.0",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-testing-library": "^5.0.0",
"husky": "^7.0.4",
"jest-junit": "^13.0.0",
"lint-staged": "^12.1.2",
"npm-run-all": "^4.1.3",
"prettier": "2.5.0",
"shelljs": "^0.8.2",
"stylelint": "^13.12.0",
"stylelint-config-recommended-scss": "^4.3.0",
"stylelint-config-standard": "^22.0.0",
"stylelint-declaration-strict-value": "^1.8.0",
"stylelint-scss": "^3.21.0"
},
"resolutions": {
"@typescript-eslint/typescript-estree": "^5.6.0",
"caniuse-lite": "^1.0.30001272"
},
"scripts": {
"prepare": "husky install",
"prestart": "node bin/pre-start",
"start": "react-scripts start",
"build": "react-scripts build",
"lint": "npm-run-all -c lint:*",
"lint:eslint": "eslint 'src/**/*.{js,jsx,ts,tsx}'",
"lint:stylelint": "stylelint 'src/**/*.scss'",
"test": "react-scripts test",
"test:coverage": "react-scripts test --env=jsdom --coverage",
"eject": "react-scripts eject",
"heroku-postbuild": "npm-run-all build"
},
"lint-staged": {
"src/**/*.{js,jsx,ts,tsx}": "eslint",
"src/**/*.scss": "stylelint"
},
"engines": {
"node": "16.13.0",
"yarn": ">=1.22.17"
},
"jest": {
"collectCoverageFrom": [
"src/**/*.{js,jsx,ts,tsx}"
]
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not ie <= 11",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
}
}