-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
68 lines (68 loc) · 1.89 KB
/
package.json
File metadata and controls
68 lines (68 loc) · 1.89 KB
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
{
"name": "react-page-turn",
"description": "Page turning transition for React components",
"main": "index.js",
"scripts": {
"build": "NODE_ENV=production webpack --config webpack.prod.config.js",
"dev": "webpack-dev-server --progress --colors --hot --content-base ./example --config ./webpack.config.js",
"postbuild": "NODE_ENV=production TARGET=minify webpack --config webpack.prod.config.js",
"prebuild": "rm -rf dist && mkdir dist",
"prepublish": "npm run build",
"test": "echo \"no tests defined\""
},
"version" : "0.0.1",
"repository": {
"type": "git",
"url": "git+https://github.com/askadev/react-page-turn.git"
},
"bugs": {
"url": "https://github.com/askadev/react-page-turn/issues"
},
"homepage": "https://github.com/drcmda/react-page-turn",
"license": "MIT",
"prettier": {
"semi": true,
"trailingComma": "es5",
"singleQuote": true,
"tabWidth": 2
},
"author": "Tim Shedor <tim@askadev.org> (https://askadev.org)",
"dependencies": {
"react-spring": "^4.1.x"
},
"peerDependencies": {
"react": "0.14.x || ^15.0.0",
"react-dom": "0.14.x || ^15.0.0"
},
"devDependencies": {
"@babel/core": "7.0.0-beta.44",
"@babel/polyfill": "7.0.0-beta.44",
"@babel/preset-env": "7.0.0-beta.44",
"@babel/preset-react": "7.0.0-beta.44",
"@babel/preset-stage-0": "^7.0.0-beta.44",
"babel-loader": "8.0.0-beta.0",
"file-loader": "^1.1.5",
"html-webpack-plugin": "^2.30.1",
"prop-types": "^15.5.10",
"react": "^16.2.0",
"react-dom": "^16.2.0",
"react-hot-loader": "^4.0.0-beta.21",
"webpack": "^3.4.1",
"webpack-dev-server": "^2.6.1"
},
"babel": {
"presets": [
[
"@babel/preset-env",
{
"modules": false
}
],
"@babel/preset-react",
"@babel/preset-stage-0"
],
"plugins": [
"react-hot-loader/babel"
]
}
}