-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
123 lines (123 loc) · 3.76 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
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
{
"name": "react-router-drilldown",
"version": "0.0.0-development",
"description": "provides drilldown-style horizontal slide transitions between index and child routes",
"sideEffects": false,
"scripts": {
"storybook": "start-storybook -p 6006",
"build-storybook": "build-storybook",
"build:demo": "cross-env NODE_ENV=production BABEL_ENV=es5 webpack",
"demo:dev": "webpack-dev-server",
"predeploy": "yarn build:demo",
"deploy": "gh-pages -d demo",
"tc": "toolchain",
"toolchain": "toolchain",
"test": "toolchain test",
"prepublishOnly": "echo This package is meant to be published by semantic-release from the dist build directory. && exit 1"
},
"repository": {
"type": "git",
"url": "https://github.com/jcoreio/react-router-drilldown.git"
},
"keywords": [
"react",
"react-router",
"drilldown",
"route",
"transition",
"animation"
],
"author": "Andy Edwards",
"license": "MIT",
"bugs": {
"url": "https://github.com/jcoreio/react-router-drilldown/issues"
},
"homepage": "https://github.com/jcoreio/react-router-drilldown#readme",
"devDependencies": {
"@babel/core": "^7.24.4",
"@babel/plugin-syntax-flow": "^7.14.5",
"@babel/plugin-transform-react-jsx": "^7.14.9",
"@babel/preset-env": "^7.24.4",
"@babel/preset-react": "^7.24.1",
"@babel/preset-typescript": "^7.24.1",
"@jcoreio/eslint-plugin-implicit-dependencies": "^1.1.1",
"@jcoreio/toolchain": "^3.10.3",
"@jcoreio/toolchain-circle": "^3.10.3",
"@jcoreio/toolchain-esnext": "^3.10.3",
"@jcoreio/toolchain-flow": "^3.10.3",
"@jcoreio/toolchain-mocha": "^3.10.3",
"@jcoreio/toolchain-react": "^3.10.3",
"@jcoreio/toolchain-semantic-release": "^3.10.3",
"@jcoreio/toolchain-typescript": "^3.10.3",
"@material-ui/core": "^3.9.3",
"@material-ui/icons": "^3.0.2",
"@testing-library/react": "^14.2.1",
"@types/chai": "^4.3.5",
"@types/mocha": "^10.0.6",
"@types/react": "^18.0.0",
"@types/react-router-dom": "^5.3.3",
"@types/warning": "^3.0.3",
"@typescript-eslint/eslint-plugin": "^7.6.0",
"@typescript-eslint/parser": "^7.6.0",
"babel-loader": "^9.1.3",
"chai": "^4.3.7",
"copy": "^0.3.2",
"core-js": "^3.36.1",
"cross-env": "^5.2.0",
"css-loader": "^0.28.4",
"eslint": "^8.56.0",
"eslint-config-prettier": "^3.3.0",
"eslint-plugin-flowtype": "^8.0.3",
"eslint-plugin-no-only-tests": "^3.1.0",
"eslint-plugin-react": "^7.32.2",
"flow-bin": "^0.92.0",
"gh-pages": "^2.0.1",
"global-jsdom": "^9.0.1",
"jsdom": "^22.1.0",
"lodash.size": "^4.2.0",
"mocha": "^10.2.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-router": "^5.1.2",
"react-router-dom": "^5.1.2",
"react-test-renderer": "^16.8.6",
"react-transition-context": "^5.1.2",
"rimraf": "^2.6.0",
"sinon": "^1.17.6",
"style-loader": "^0.18.2",
"typescript": "^5.1.0",
"webpack": "^5.91.0",
"webpack-cli": "^5.1.4",
"webpack-dev-server": "^5.0.4"
},
"dependencies": {
"@babel/runtime": "^7.18.6",
"@types/history": "^4.7.11",
"@types/inline-style-prefixer": "^5.0.3",
"@types/react-router": "^5.1.20",
"history": "^4.10.1",
"inline-style-prefixer": "^2.0.5",
"prop-types": "^15.6.0",
"react-view-slider": "^4.6.1",
"warning": "^4.0.3"
},
"peerDependencies": {
"react": "^16.8.0",
"react-router": "^4.0.0 || ^5.0.0"
},
"main": "dist/index.js",
"module": "dist/index.mjs",
"types": "dist/index.d.ts",
"exports": {
"./package.json": "./package.json",
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.mjs",
"default": "./dist/index.js"
}
},
"engines": {
"node": ">=16"
},
"packageManager": "pnpm@8.11.0"
}