-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
59 lines (59 loc) · 1.87 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
{
"name": "redux-state-branch",
"version": "1.2.3",
"private": false,
"description": "A library for simplified Redux development.",
"homepage": "https://jamesmfriedman.github.io/redux-state-branch/",
"main": "dist/index",
"peerDependencies": {
"redux": "^4.0.0"
},
"scripts": {
"start": "react-app-rewired start",
"build": "./scripts/build.sh",
"build:docs": "rm -R -f docs && react-app-rewired build && mv build docs",
"test": "react-app-rewired test --env=jsdom",
"preversion": "export CI=true && npm run test",
"version": "npm run build",
"postpublish": "npm run build:docs && git add --all && git commit --allow-empty -m 'Building docs' && git push",
"docgen": "documentalist ./src/redux-state-branch/index.ts --no-css --no-md > ./src/docs/api-reference/generated-props.json"
},
"devDependencies": {
"@babel/runtime": "^7.7.7",
"@types/jest": "^24.0.25",
"@types/node": "^12.12.24",
"@types/react": "^16.9.17",
"@types/react-dom": "^16.9.4",
"@types/react-redux": "^7.1.5",
"@types/react-router-dom": "^5.1.3",
"@types/react-test-renderer": "^16.9.1",
"@types/redux-thunk": "^2.1.0",
"documentalist": "^1.6.0",
"normalize.css": "^8.0.1",
"prettier": "^1.19.1",
"prettier-tslint": "^0.4.2",
"prismjs": "^1.18.0",
"react": "^16.12.0",
"react-app-rewired": "^2.1.5",
"react-dom": "^16.12.0",
"react-markdown-loader": "git+https://github.com/jamesmfriedman/react-markdown-loader.git",
"react-redux": "^7.1.3",
"react-router-dom": "^5.1.2",
"react-scripts": "^3.3.0",
"rmwc": "^5.7.2",
"typescript": "^3.7.4"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"dependencies": {}
}