-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
executable file
·44 lines (44 loc) · 1.09 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
{
"name": "react-motion-stack",
"description": "A simple react component that gives you a beautiful 60fps swipe interaction",
"version": "0.0.3",
"main": "build/cjs/react-motion-stack.js",
"module": "build/esm/react-motion-stack.js",
"unpkg": "build/umd/react-motion-stack.js",
"dependencies": {
"prop-types": "^15.6.0",
"react-motion": "0.5.2"
},
"peerDependencies": {
"react": ">=15 || ^16"
},
"devDependencies": {
"@babel/core": "^7.0.0-beta.39",
"@babel/preset-env": "^7.0.0-beta.39",
"@babel/preset-react": "^7.0.0-beta.39",
"@babel/preset-stage-1": "^7.0.0-beta.39",
"react-dom": "^16.0.0",
"rollup": "^0.59.4",
"rollup-plugin-babel": "^4.0.0-beta.0",
"rollup-plugin-commonjs": "^8.0.2",
"rollup-plugin-css-only": "^0.4.0",
"rollup-plugin-node-resolve": "^3.0.0"
},
"scripts": {
"build": "rollup -c",
"dev": "rollup -c -w",
"test": "node test/test.js",
"pretest": "npm run build"
},
"files": [
"build"
],
"keywords": [
"card",
"swipe",
"tinder",
"animation",
"react",
"motion"
]
}