This repository has been archived by the owner on Dec 10, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 40
/
package.json
66 lines (66 loc) · 1.88 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
{
"name": "react-motion-ui-pack",
"version": "0.10.3",
"description": "Addon component wrappers for common UI transitions.",
"main": "lib/react-motion-ui-pack.js",
"files": [
"dist",
"lib"
],
"scripts": {
"build:lib": "babel src --out-dir lib",
"build": "npm run build:lib && NODE_ENV=production webpack --config webpack.prod.config.js",
"dev": "webpack-dev-server --devtool eval --hot --progress --colors",
"postbuild": "NODE_ENV=production TARGET=minify webpack --config webpack.prod.config.js",
"prebuild": "rm -rf dist && mkdir dist",
"prepublish": "npm run build"
},
"repository": {
"type": "git",
"url": "https://github.com/souporserious/react-motion-ui-pack"
},
"keywords": [
"react",
"component",
"react-component",
"ui",
"motion",
"transition",
"animation"
],
"author": "Travis Arnold <[email protected]> (http://souporserious.com)",
"license": "MIT",
"bugs": {
"url": "https://github.com/souporserious/react-motion-ui-pack/issues"
},
"homepage": "https://github.com/souporserious/react-motion-ui-pack",
"peerDependencies": {
"react": "0.14.x || ^15.0.0",
"react-dom": "0.14.x || ^15.0.0"
},
"dependencies": {
"get-prefix": "^1.0.0",
"prop-types": "^15.5.10",
"react-motion": "^0.4.5"
},
"devDependencies": {
"babel-cli": "^6.16.0",
"babel-core": "^6.17.0",
"babel-loader": "^6.2.5",
"babel-preset-es2015": "^6.16.0",
"babel-preset-react": "^6.16.0",
"babel-preset-stage-0": "^6.16.0",
"css-loader": "^0.25.0",
"http-server": "^0.9.0",
"node-libs-browser": "^1.0.0",
"node-sass": "^3.2.0",
"postcss-loader": "^0.13.0",
"react": "15.3.2",
"react-dom": "15.3.2",
"react-motion": "^0.4.2",
"sass-loader": "^4.0.2",
"style-loader": "^0.13.1",
"webpack": "^1.13.2",
"webpack-dev-server": "^1.9.0"
}
}