forked from maisano/react-router-transition
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
56 lines (56 loc) · 1.67 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
{
"name": "react-router-transition",
"version": "0.0.6",
"description": "A thin layer over react-motion for animating routes in react-router.",
"main": "lib/react-router-transition.js",
"scripts": {
"build": "webpack",
"build:demos": "webpack --config webpack.demos.config.js",
"watch:demos": "webpack --config webpack.demos.config.js --watch",
"start:demos": "webpack-dev-server --config webpack.demos.config.js",
"prerelease": "rm -fr lib && npm run build",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "https://github.com/maisano/react-router-transition.git"
},
"keywords": [
"react",
"react-router",
"react-motion",
"animation",
"transition"
],
"author": "maisano",
"license": "MIT",
"bugs": {
"url": "https://github.com/maisano/react-router-transition/issues"
},
"homepage": "https://github.com/maisano/react-router-transition#readme",
"peerDependencies": {
"react": ">=0.13.2 || ^0.14"
},
"dependencies": {
"react-motion": "^0.4.2"
},
"devDependencies": {
"babel-core": "^6.4.5",
"babel-eslint": "^4.1.8",
"babel-loader": "^6.2.2",
"babel-plugin-syntax-object-rest-spread": "^6.5.0",
"babel-plugin-transform-object-rest-spread": "^6.5.0",
"babel-preset-es2015": "^6.3.13",
"babel-preset-react": "^6.3.13",
"eslint": "^1.10.3",
"eslint-config-airbnb": "^5.0.0",
"eslint-loader": "^1.2.1",
"eslint-plugin-react": "^3.16.1",
"history": "^2.0.0",
"react": "^0.14.7",
"react-dom": "^0.14.7",
"react-router": "^2.0.0-rc6",
"webpack": "^1.12.13",
"webpack-dev-server": "^1.14.1"
}
}