-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
52 lines (52 loc) · 1.44 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
{
"name": "react-route-transition",
"version": "1.0.6",
"description": "A tiny transition orchestrator for React",
"main": "dist/bundle.js",
"types": "dist/index.d.ts",
"scripts": {
"build:rollup": "rollup -c",
"create-dts": "tsc --emitDeclarationOnly --declaration --declarationDir dist",
"build": "npm run build:rollup && npm run create-dts",
"test": "echo \"Warning: no test specified\" && exit 0",
"prepare": "npm run build"
},
"homepage": "https://github.com/dutzi/react-route-transition#readme",
"bugs": {
"url": "https://github.com/dutzi/react-route-transition/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/dutzi/react-route-transition.git"
},
"keywords": [
"react",
"reactjs",
"transition",
"animation",
"tween"
],
"author": "dutzi",
"license": "MIT",
"peerDependencies": {
"react": ">=16",
"react-router-dom": ">=5"
},
"devDependencies": {
"@babel/core": "^7.9.0",
"@babel/preset-typescript": "^7.9.0",
"@rollup/plugin-typescript": "^4.0.0",
"@types/react": "^16.9.31",
"@types/react-router-dom": "^5.1.3",
"babel-preset-es2015": "^6.24.1",
"rollup": "^2.3.2",
"rollup-plugin-babel": "^4.4.0",
"rollup-plugin-terser": "^5.3.0",
"rollup-plugin-typescript": "^1.0.1",
"rollup-watch": "^4.3.1",
"tslib": "^1.11.1",
"typescript": "^3.8.3",
"typings": "^2.1.1"
},
"dependencies": {}
}