-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
101 lines (101 loc) · 3.32 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
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
{
"name": "react-router-nested-history",
"version": "4.3.1",
"description": "A library to help build React apps with nested tabs and other containers that have their own history, complete with automatic altering of the browser's back and forward history to make it behave as you would expect",
"author": "Ken Fehling",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/kenfehling/react-router-nested-history"
},
"bugs": "https://github.com/kenfehling/react-router-nested-history/issues",
"main": "lib/index.js",
"files": [
"dist",
"lib"
],
"scripts": {
"clean": "rimraf dist",
"lint": "eslint src tests",
"test": "mocha --compilers ts:ts-node/register --recursive **/*.test.ts",
"test:watch": "mocha --compilers ts:ts-node/register --recursive --watch **/*.test.ts",
"test:e2e-setup": "cd test/e2e; npm run e2e-setup",
"test:e2e-server": "cd test/e2e; npm start",
"test:e2e": "cd test/e2e; npm test",
"build:lib": "rm -rf lib; tsc",
"build:umd": "webpack --config webpack.config.development.babel.js",
"build:umd:min": "webpack --config webpack.config.production.babel.js",
"build": "npm run build:lib && npm run build:umd && npm run build:umd:min",
"build:examples": "cd examples; npm uninstall react-router-nested-history; npm install kenfehling/react-router-nested-history; npm run build",
"publish:examples": "git subtree push --prefix examples origin heroku",
"stats": "webpack --config webpack.config.production.babel.js --profile --json > stats.json"
},
"keywords": [
"nested",
"history",
"react",
"router",
"tree"
],
"dependencies": {
"babel-runtime": "^6.23.0",
"bowser": "^1.6.0",
"exenv": "^1.2.2",
"fbjs": "^3.0.4",
"history": "4.5.1",
"immutable": "^3.8.1",
"invariant": "^2.2.2",
"lodash": "^4.17.4",
"lodash.omit": "^4.5.0",
"path-to-regexp": "^1.7.0",
"promise-queue": "^2.2.3",
"prop-types": "^15.5.8",
"re-reselect": "^0.1.0",
"react-draggable": "^2.2.3",
"react-motion": "^0.5.2",
"react-redux": "^5.0.3",
"react-router-transition": "1.4.0",
"recompose": "npm:react-recompose",
"redux": "^3.6.0",
"redux-persist": "^4.5.0",
"reselect": "^3.0.0",
"store": "^1.3.20",
"warning": "^3.0.0"
},
"devDependencies": {
"@types/history": "4.5.0",
"@types/react": "15.0.11",
"@types/react-dom": "^0.14.20",
"@types/react-redux": "^5.0.3",
"awesome-typescript-loader": "^3.0.0-beta.18",
"babel-cli": "^6.24.1",
"babel-core": "^6.3.26",
"babel-eslint": "^10.1.0",
"babel-plugin-transform-object-rest-spread": "^6.23.0",
"babel-preset-env": "^1.7.0",
"babel-preset-react": "^6.16.0",
"chai": "^3.5.0",
"csstype": "3.0.2",
"eslint": "^7.11.0",
"eslint-plugin-import": "^2.2.0",
"expose-loader": "^0.7.3",
"lodash-webpack-plugin": "^0.11.2",
"mocha": "^3.2.0",
"react": "^16.6.3",
"react-dom": "^16.6.3",
"react-router": "4.3.1",
"react-router-dom": "4.3.1",
"rimraf": "^2.5.4",
"ts-node": "^10.9.1",
"tslint": "^5.11.0",
"typescript": "^4.8.4",
"webpack": "4.44.2",
"webpack-cli": "4.10.0"
},
"peerDependencies": {
"react": ">=15",
"react-dom": ">=15",
"react-router": "4.3.1",
"react-router-dom": "4.3.1"
}
}