-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
65 lines (65 loc) · 1.6 KB
/
package.json
File metadata and controls
65 lines (65 loc) · 1.6 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
{
"name": "react-redux-typescript",
"version": "0.1.0",
"private": true,
"dependencies": {
"@types/blueimp-md5": "^2.7.0",
"@types/jest": "25.2.3",
"@types/node": "14.0.5",
"@types/react": "16.9.35",
"@types/react-dom": "16.9.8",
"@types/react-redux": "^7.1.7",
"@types/redux-saga": "^0.10.5",
"blueimp-md5": "^2.13.0",
"react": "^16.13.1",
"react-dom": "^16.13.1",
"react-redux": "^7.2.0",
"react-scripts": "^3.4.1",
"redux": "^4.0.5",
"redux-devtools-extension": "^2.13.8",
"redux-logger": "^3.0.6",
"redux-saga": "^1.1.3",
"reselect": "^4.0.0",
"typesafe-actions": "^5.1.0",
"typescript": "3.9.3"
},
"scripts": {
"start": "react-scripts start",
"build": "react-scripts build",
"test": "react-scripts test",
"eject": "react-scripts eject",
"postbuild": "react-snap",
"lint": "eslint src/**/*.tsx src/**/*.ts --max-warnings 5",
"size": "yarn build && size-limit",
"prettier": "prettier 'src/**' --write"
},
"reactSnap": {
"inlineCss": false
},
"size-limit": [
{
"path": "build/static/**/*.{js,css,svg,woff,woff2,png,ttf,html}"
}
],
"eslintConfig": {
"extends": "react-app"
},
"browserslist": {
"production": [
"defaults"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"devDependencies": {
"@size-limit/preset-app": "^4.5.0",
"glob-all": "^3.2.1",
"normalize.css": "^8.0.1",
"prettier": "^2.0.4",
"react-snap": "^1.23.0",
"start-server-and-test": "^1.11.0"
}
}