-
Notifications
You must be signed in to change notification settings - Fork 12
/
package.json
104 lines (104 loc) · 2.78 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
{
"name": "strichliste-web",
"version": "2.0.0",
"private": true,
"dependencies": {
"classnames": "^2.2.6",
"history": "^5.0.0",
"howler": "^2.2.0",
"inter-ui": "^3.15.0",
"jest-environment-jsdom-sixteen": "^1.0.3",
"react": "^16.13.1",
"react-dom": "^16.13.1",
"react-infinite-scroll-component": "^5.1.0",
"react-intl": "^5.8.1",
"react-redux": "^7.2.1",
"react-router": "^5.2.0",
"react-router-dom": "^5.2.0",
"react-scripts": "3.4.3",
"recharts": "^1.8.5",
"redux": "^4.0.5"
},
"scripts": {
"analyze": "source-map-explorer 'build/static/js/*.js'",
"start": "react-scripts start",
"build": "react-scripts build",
"lint": "eslint --ext .tsx,.ts src/",
"test": "react-scripts test --env=jest-environment-jsdom-sixteen",
"eject": "react-scripts eject",
"dedup": "npx yarn-deduplicate yarn.lock"
},
"devDependencies": {
"@testing-library/react": "^11.0.4",
"@types/classnames": "^2.2.10",
"@types/fetch-mock": "^7.3.3",
"@types/howler": "^2.2.1",
"@types/jest": "^26.0.13",
"@types/lodash": "^4.14.161",
"@types/node": "^14.10.2",
"@types/react": "16.9.49",
"@types/react-axe": "^3.1.0",
"@types/react-dom": "16.9.8",
"@types/react-infinite-scroll-component": "^4.2.5",
"@types/react-intl": "^3.0.0",
"@types/react-redux": "^7.1.9",
"@types/react-router": "^5.1.8",
"@types/react-router-dom": "^5.1.5",
"@types/recharts": "^1.8.15",
"@types/redux-mock-store": "^1.0.2",
"@typescript-eslint/eslint-plugin": "^4.1.1",
"@typescript-eslint/parser": "^4.1.1",
"awesome-typescript-loader": "^5.2.0",
"babel-preset-jest": "^26.3.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-jest": "^24.0.1",
"eslint-plugin-jsx-a11y": "^6.3.1",
"eslint-plugin-prettier": "^3.1.4",
"eslint-plugin-react": "^7.20.6",
"eslint-plugin-react-hooks": "^4.1.2",
"husky": "^4.3.0",
"lint-staged": "^10.3.0",
"lodash": "^4.17.20",
"prettier": "^2.1.2",
"react-axe": "^3.5.3",
"redux-mock-store": "^1.5.4",
"source-map-explorer": "^2.5.0",
"ts-config": "^20.10.0",
"ts-jest": "~26.3.0",
"typescript": "4.0.2"
},
"eslintConfig": {
"extends": "react-app"
},
"browserslist": [
">0.2%",
"not dead",
"not ie <= 11",
"not op_mini all"
],
"prettier": {
"trailingComma": "es5",
"proseWrap": "never",
"singleQuote": true
},
"lint-staged": {
"linters": {
"*.js": [
"prettier --write",
"git add"
],
"*.md": [
"prettier --prose-wrap always --write",
"git add"
],
"*.{ts,tsx}": [
"yarn lint --fix",
"git add"
],
"*.css": [
"prettier --write",
"git add"
]
}
}
}