This repository has been archived by the owner on Nov 18, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 53
/
package.json
82 lines (82 loc) · 2.55 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
{
"name": "react-router-page-transition",
"version": "3.1.0",
"description": "Highly customizable page transition component for your your React Router",
"main": "lib/PageTransition.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"patch": "npm run build && npm version patch && git push && npm publish",
"major": "npm run build && npm version major && git push && npm publish",
"minor": "npm run build && npm version minor && git push && npm publish",
"start": "NODE_ENV=development node dev-server ./webpack/config",
"clean-demo": "rimraf demo-build/*",
"build-demo": "npm run clean-demo && npm run webpack && cp examples/index.html demo-build/index.html",
"build": "./node_modules/babel-cli/bin/babel.js src -d lib",
"deploy-demo": "cd demo-build && git add --all && git commit -m \"Release at $(date)\" && git push",
"webpack": "webpack --colors --progress --config ./webpack/config"
},
"babel": {
"presets": [
"es2015",
"react"
]
},
"config": {
"buildDir": "./demo-build",
"devHost": "localhost",
"devPort": 8232
},
"keywords": [
"react",
"react-router",
"transition",
"page",
"route"
],
"author": "Trung Dinh Quang",
"repository": {
"type": "git",
"url": "git+https://github.com/trungdq88/react-router-page-transition.git"
},
"bugs": {
"url": "https://github.com/trungdq88/react-router-page-transition/issues"
},
"homepage": "https://github.com/trungdq88/react-router-page-transition",
"license": "ISC",
"devDependencies": {
"autoprefixer": "^6.3.6",
"babel-cli": "^6.9.0",
"babel-core": "^6.10.4",
"babel-eslint": "^6.1.0",
"babel-loader": "^6.2.4",
"babel-preset-es2015": "^6.9.0",
"babel-preset-react": "^6.5.0",
"css-loader": "^0.23.1",
"eslint": "^2.13.1",
"eslint-config-airbnb": "^9.0.1",
"eslint-plugin-import": "^1.9.2",
"eslint-plugin-jsx-a11y": "^1.5.3",
"eslint-plugin-react": "^5.2.2",
"extract-text-webpack-plugin": "^1.0.1",
"file-loader": "^0.8.5",
"less": "^2.7.1",
"less-loader": "^2.2.3",
"opn": "^4.0.2",
"postcss-loader": "^0.9.1",
"prop-types": "^15.5.10",
"randomcolor": "^0.4.4",
"react": "^15.1.0",
"react-dom": "^15.1.0",
"react-hot-loader": "^1.3.0",
"react-router": "^2.5.2",
"rx": "^4.1.0",
"style-loader": "^0.13.1",
"template-html-loader": "0.0.3",
"url-loader": "^0.5.7",
"webpack": "^1.13.1",
"webpack-dev-server": "^1.14.1"
},
"dependencies": {
"promise-queue": "^2.2.3"
}
}