|
| 1 | +{ |
| 2 | + "name": "react-page-turn", |
| 3 | + "description": "Page turning transition for React components", |
| 4 | + "main": "index.js", |
| 5 | + "scripts": { |
| 6 | + "build": "NODE_ENV=production webpack --config webpack.prod.config.js", |
| 7 | + "dev": "webpack-dev-server --progress --colors --hot --content-base ./example --config ./webpack.config.js", |
| 8 | + "postbuild": "NODE_ENV=production TARGET=minify webpack --config webpack.prod.config.js", |
| 9 | + "prebuild": "rm -rf dist && mkdir dist", |
| 10 | + "prepublish": "npm run build", |
| 11 | + "test": "echo \"no tests defined\"" |
| 12 | + }, |
| 13 | + "version" : "0.0.1", |
| 14 | + "repository": { |
| 15 | + "type": "git", |
| 16 | + "url": "git+https://github.com/askadev/react-page-turn.git" |
| 17 | + }, |
| 18 | + "bugs": { |
| 19 | + "url": "https://github.com/askadev/react-page-turn/issues" |
| 20 | + }, |
| 21 | + "homepage": "https://github.com/drcmda/react-page-turn", |
| 22 | + "license": "MIT", |
| 23 | + "prettier": { |
| 24 | + "semi": true, |
| 25 | + "trailingComma": "es5", |
| 26 | + "singleQuote": true, |
| 27 | + "tabWidth": 2 |
| 28 | + }, |
| 29 | + "author": "Tim Shedor <[email protected]> (https://askadev.org)", |
| 30 | + "dependencies": { |
| 31 | + "react-spring": "^4.1.x" |
| 32 | + }, |
| 33 | + "peerDependencies": { |
| 34 | + "react": "0.14.x || ^15.0.0", |
| 35 | + "react-dom": "0.14.x || ^15.0.0" |
| 36 | + }, |
| 37 | + "devDependencies": { |
| 38 | + "@babel/core": "7.0.0-beta.44", |
| 39 | + "@babel/polyfill": "7.0.0-beta.44", |
| 40 | + "@babel/preset-env": "7.0.0-beta.44", |
| 41 | + "@babel/preset-react": "7.0.0-beta.44", |
| 42 | + "@babel/preset-stage-0": "^7.0.0-beta.44", |
| 43 | + "babel-loader": "8.0.0-beta.0", |
| 44 | + "file-loader": "^1.1.5", |
| 45 | + "html-webpack-plugin": "^2.30.1", |
| 46 | + "prop-types": "^15.5.10", |
| 47 | + "react": "^16.2.0", |
| 48 | + "react-dom": "^16.2.0", |
| 49 | + "react-hot-loader": "^4.0.0-beta.21", |
| 50 | + "webpack": "^3.4.1", |
| 51 | + "webpack-dev-server": "^2.6.1" |
| 52 | + }, |
| 53 | + "babel": { |
| 54 | + "presets": [ |
| 55 | + [ |
| 56 | + "@babel/preset-env", |
| 57 | + { |
| 58 | + "modules": false |
| 59 | + } |
| 60 | + ], |
| 61 | + "@babel/preset-react", |
| 62 | + "@babel/preset-stage-0" |
| 63 | + ], |
| 64 | + "plugins": [ |
| 65 | + "react-hot-loader/babel" |
| 66 | + ] |
| 67 | + } |
| 68 | +} |
0 commit comments