This repository has been archived by the owner on Aug 9, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
84 lines (84 loc) · 2.35 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
{
"name": "heybox-wfa",
"version": "0.1.0",
"private": true,
"dependencies": {
"@fortawesome/fontawesome-svg-core": "^1.2.21",
"@fortawesome/free-regular-svg-icons": "^5.10.1",
"@fortawesome/free-solid-svg-icons": "^5.10.1",
"@fortawesome/react-fontawesome": "^0.1.4",
"@types/node": "12.7.1",
"@types/qs": "^6.5.3",
"@types/react": "16.8.25",
"@types/react-dom": "16.8.5",
"axios": "^0.19.0",
"connected-react-router": "^6.5.2",
"date-fns": "^1.30.1",
"grommet": "^2.7.4",
"grommet-icons": "^4.2.0",
"js-cookie": "^2.2.1",
"lodash": "^4.17.15",
"qs": "^6.7.0",
"react": "^16.8.6",
"react-dom": "^16.8.6",
"react-helmet": "^5.2.1",
"react-redux": "^7.1.0",
"react-router": "^5.0.1",
"react-router-dom": "^5.0.1",
"react-scripts": "3.0.1",
"redux": "^4.0.4",
"redux-axios-middleware": "^4.0.1",
"styled-components": "^4.3.2",
"typescript": "3.5.3"
},
"scripts": {
"start": "react-app-rewired start",
"build": "react-app-rewired build",
"test": "react-app-rewired test",
"eject": "react-scripts eject",
"lint:fix": "eslint . --fix --ignore-path .gitignore"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"devDependencies": {
"@types/js-cookie": "^2.2.2",
"@types/lodash": "^4.14.136",
"@types/react-redux": "^7.1.1",
"@types/react-router-dom": "^4.3.4",
"@typescript-eslint/eslint-plugin": "^1.13.0",
"@typescript-eslint/parser": "^1.13.0",
"eslint-config-prettier": "^6.0.0",
"eslint-import-resolver-typescript": "^1.1.1",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-prettier": "^3.1.0",
"eslint-plugin-react": "^7.14.3",
"eslint-plugin-react-hooks": "^1.6.1",
"husky": "^3.0.2",
"lint-staged": "^9.2.1",
"postcss-nested": "^4.1.2",
"postcss-normalize": "^8.0.1",
"postcss-preset-env": "^6.7.0",
"prettier": "^1.18.2",
"react-app-rewire-postcss": "^3.0.2",
"react-app-rewired": "^2.1.3",
"redux-devtools-extension": "^2.13.8"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.(js|ts|tsx)": "eslint --fix --ignore-path .gitignore"
}
}