-
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.61 KB
/
package.json
File metadata and controls
65 lines (65 loc) · 1.61 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-station",
"author": "Marcel Puetz",
"version": "0.1.5",
"license": "MIT",
"homepage": "http://puema.github.io/react-station/",
"repository": "https://github.com/puema/react-station",
"main": "dist",
"types": "dist",
"files": [
"dist"
],
"scripts": {
"compile": "tsc --build",
"start": "react-scripts start",
"build": "react-scripts build",
"test": "react-scripts test",
"lint": "eslint src --ext js,jsx,ts,tsx",
"prepublish": "yarn compile",
"predeploy": "yarn build",
"deploy": "gh-pages -d build",
"eject": "react-scripts eject"
},
"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/jest": "24.0.22",
"@types/lodash": "^4.14.149",
"@types/node": "12.12.6",
"@types/react": "16.9.11",
"@types/react-dom": "16.9.4",
"@types/react-redux": "^7.1.5",
"@types/react-router-dom": "^5.1.2",
"@types/redux": "^3.6.0",
"@types/smoothscroll-polyfill": "0.3.1",
"@types/styled-components": "^4.4.0",
"eslint-config-prettier": "6.9.0",
"eslint-plugin-prettier": "3.1.2",
"gh-pages": "^2.2.0",
"prettier": "^1.18.2",
"react": "^16.11.0",
"react-dom": "^16.11.0",
"react-redux": "^7.1.3",
"react-router-dom": "^5.1.2",
"react-scripts": "3.2.0",
"styled-components": "^4.4.1",
"typescript": "3.7.2"
},
"keywords": [
"react",
"state management",
"hooks",
"actions"
]
}