-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
73 lines (73 loc) · 2.16 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
{
"name": "lucky-react-starter",
"version": "1.0.0",
"private": true,
"scripts": {
"build": "react-scripts build && cp _redirects build/_redirects",
"eject": "react-scripts eject",
"lint": "eslint --cache 'src/**/*.{ts,tsx,jsx}' && stylelint '**/**.tsx' && tsc && ts-unused-exports tsconfig.json",
"start": "react-scripts start",
"test": "react-scripts test && npm run lint"
},
"browserslist": {
"production": [
"edge >= 12",
"ff >= 60",
"chrome >= 44",
"safari >= 10"
],
"development": [
"edge >= 12",
"ff >= 60",
"chrome >= 44",
"safari >= 10"
]
},
"eslintConfig": {
"extends": "react-app"
},
"dependencies": {
"axelra-styled-bootstrap-grid": "^0.7.0",
"lodash": "^4.17.21",
"polished": "^4.1.3",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-redux": "^7.2.6",
"react-router-dom": "^6.0.1",
"react-scripts": "4.0.3",
"redux": "^4.1.2",
"redux-thunk": "^2.4.0",
"styled-components": "^5.3.3"
},
"devDependencies": {
"@types/jest": "27.0.2",
"@types/lodash": "^4.14.176",
"@types/node": "16.11.7",
"@types/react": "17.0.34",
"@types/react-dom": "17.0.11",
"@types/react-redux": "^7.1.20",
"@types/react-router": "^5.1.17",
"@types/react-router-dom": "^5.3.2",
"@types/styled-components": "^5.1.15",
"eslint-config-prettier": "^8.3.0",
"eslint-config-react-app": "^6.0.0",
"eslint-plugin-10x": "^1.5.0",
"eslint-plugin-import": "^2.25.2",
"eslint-plugin-no-inline-styles": "^1.0.5",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-promise": "^5.1.1",
"eslint-plugin-react": "^7.26.1",
"eslint-plugin-react-hooks": "^4.3.0",
"prettier": "^2.4.1",
"redux-devtools-extension": "2.13.9",
"stylelint": "14.0.1",
"stylelint-config-recommended": "^6.0.0",
"stylelint-config-standard": "^23.0.0",
"stylelint-config-styled-components": "^0.1.1",
"stylelint-no-unsupported-browser-features": "^5.0.2",
"stylelint-processor-styled-components": "^1.10.0",
"ts-unused-exports": "^7.0.3",
"typescript": "^4.4.4",
"whatwg-fetch": "^3.6.2"
}
}