-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
50 lines (50 loc) · 1.49 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
{
"name": "carry-on-react-router",
"version": "2.0.0-alpha.5",
"description": "carry-on plugin to support routing",
"repository": {
"type": "git",
"url": "https://github.com/dfadev/carry-on.git"
},
"license": "MIT",
"author": "Russ Panula <[email protected]>",
"sideEffects": false,
"main": "./dist/carry-on-react-router.cjs.js",
"module": "./dist/carry-on-react-router.esm.js",
"source": "./src/index.js",
"scripts": {
"build": "rollup -c rollup.config.js",
"build-dev": "rollup -c rollup.config.js --configDebug",
"clean": "rimraf dist",
"lint": "eslint src test",
"watch": "npm run build -- -w"
},
"dependencies": {
"history": "=4.10.1",
"hoist-non-react-statics": "^3.3.2",
"path-to-regexp": "^6.2.1",
"react-is": "^17.0.2 || ^18.2.0"
},
"devDependencies": {
"carry-on-react": "^2.0.0-alpha.5",
"carry-on-store": "^2.0.0-alpha.5",
"carry-on-utils": "^2.0.0-alpha.5",
"react": "^17.0.2 || ^18.2.0",
"react-dom": "^17.0.2 || ^18.2.0",
"react-is": "^17.0.2 || ^18.2.0",
"rimraf": "^3.0.2",
"rollup": "^2.79.0"
},
"peerDependencies": {
"carry-on-react": "^2.0.0-alpha.5",
"carry-on-store": "^2.0.0-alpha.5",
"carry-on-utils": "^2.0.0-alpha.5",
"react": "^17.0.2 || ^18.2.0",
"react-dom": "^17.0.2 || ^18.2.0"
},
"exports": {
"require": "./dist/carry-on-react-router.cjs.js",
"import": "./dist/carry-on-react-router.esm.js",
"default": "./dist/carry-on-react-router.esm.js"
}
}