-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
90 lines (90 loc) · 2.52 KB
/
package.json
File metadata and controls
90 lines (90 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
86
87
88
89
90
{
"name": "my-app",
"version": "0.1.0",
"private": true,
"scripts": {
"start": "react-scripts start",
"build": "react-scripts build",
"test": "react-scripts test",
"eject": "react-scripts eject",
"lint-js": "eslint src --ext .ts,.tsx",
"lint-styled": "stylelint './src/**/*.{tsx,ts}'",
"lint": "yarn lint-js && yarn lint-styled",
"postinstall": "husky install"
},
"dependencies": {
"@reduxjs/toolkit": "^1.6.1",
"antd": "^4.16.8",
"classnames": "^2.3.1",
"date-fns": "^2.23.0",
"humps": "^2.0.1",
"ky": "^0.28.5",
"linkify-react": "^3.0.1",
"linkifyjs": "^3.0.1",
"lodash": "^4.17.21",
"react": "^17.0.2",
"react-animate-on-scroll": "^2.1.5",
"react-dom": "^17.0.2",
"react-is": "^17.0.2",
"react-redux": "^7.2.4",
"react-scripts": "4.0.3",
"react-spinners": "^0.11.0",
"react-transition-group": "^4.4.2",
"styled-components": "^5.3.0",
"web-vitals": "^2.1.0"
},
"devDependencies": {
"@types/humps": "^2.0.1",
"@types/jest": "^26.0.24",
"@types/lodash": "^4.14.171",
"@types/node": "^16.4.3",
"@types/react": "^17.0.15",
"@types/react-animate-on-scroll": "^2.1.3",
"@types/react-dom": "^17.0.9",
"@types/react-transition-group": "^4.4.2",
"@types/styled-components": "^5.1.11",
"@typescript-eslint/eslint-plugin": "^4.28.4",
"@typescript-eslint/parser": "^4.28.4",
"apicache": "^1.6.2",
"eslint": "^7.31.0",
"eslint-config-airbnb-typescript": "^12.3.1",
"eslint-import-resolver-node": "^0.3.4",
"eslint-plugin-import": "^2.23.4",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-react": "^7.24.0",
"eslint-plugin-react-hooks": "^4.2.0",
"http-proxy-middleware": "^2.0.1",
"husky": "^7.0.1",
"lint-staged": "^11.1.1",
"redis": "^3.1.2",
"stylelint": "^13.13.1",
"stylelint-config-rational-order": "^0.1.2",
"stylelint-config-standard": "^22.0.0",
"stylelint-config-styled-components": "^0.1.1",
"stylelint-order": "^4.1.0",
"stylelint-processor-styled-components": "^1.10.0",
"typescript": "^4.3.5"
},
"lint-staged": {
"*.{ts,tsx}": "eslint --fix",
"styled.ts": "stylelint --syntax=css-in-js --fix"
},
"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"
]
}
}