-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
84 lines (84 loc) · 2.13 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": "fast-track-typescript-redux-template",
"version": "0.1.0",
"private": true,
"dependencies": {
"@devexpress/dx-react-chart": "2.7.3",
"@devexpress/dx-react-chart-material-ui": "2.7.3",
"@devexpress/dx-react-core": "2.7.3",
"@hapi/hoek": "^8.5.1",
"@material-ui/core": "^4.11.2",
"@material-ui/icons": "^4.9.1",
"@testing-library/jest-dom": "^4.2.4",
"@testing-library/react": "^9.3.2",
"@testing-library/user-event": "^7.1.2",
"@types/classnames": "^2.2.11",
"@types/jest": "^24.0.0",
"@types/node": "^14.14.10",
"@types/react": "^16.9.0",
"@types/react-dom": "^16.9.0",
"@types/react-redux": "^7.1.7",
"@types/react-router-dom": "^5.1.3",
"@types/redux-saga": "^0.10.5",
"@types/redux-thunk": "^2.1.0",
"acorn": "^7.1.1",
"classnames": "^2.3.1",
"dot-prop": "^4.2.1",
"elliptic": "^6.5.4",
"http-proxy": "^1.18.1",
"moment": "^2.29.1",
"node-forge": "^0.10.0",
"node-sass": "^4.0.0",
"object-path": "^0.11.5",
"react": "^16.12.0",
"react-dom": "^16.12.0",
"react-icons": "^4.1.0",
"react-redux": "^7.1.3",
"react-router-dom": "^5.1.2",
"react-scripts": "^4.0.3",
"redux": "^4.0.5",
"redux-saga": "^1.1.3",
"redux-thunk": "^2.3.0",
"serialize-javascript": "^3.1.0",
"typescript": "~3.7.2",
"websocket-extensions": "^0.1.4"
},
"scripts": {
"start": "react-scripts start",
"build": "react-scripts build",
"test": "react-scripts test",
"eject": "react-scripts eject",
"lint": "eslint --fix '**/*.{ts,tsx}'"
},
"eslintConfig": {
"extends": "react-app"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"devDependencies": {
"husky": "^4.2.3",
"lint-staged": "^10.0.7",
"prettier": "2.2.0"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"./src/**/*.{js,jsx,ts,tsx}": [
"npx prettier --write",
"eslint --fix"
]
}
}