|
| 1 | +{ |
| 2 | + "name": "react-game-kit", |
| 3 | + "version": "0.0.1", |
| 4 | + "description": "Make games with react", |
| 5 | + "main": "lib", |
| 6 | + "files": [ |
| 7 | + "lib", |
| 8 | + "umd" |
| 9 | + ], |
| 10 | + "scripts": { |
| 11 | + "start": "webpack-dev-server --inline --port 3000 --config webpack.config.dev.js --content-base public/", |
| 12 | + "build": "babel src -d lib --copy-files", |
| 13 | + "clean": "rimraf dist", |
| 14 | + "clean-umd": "rimraf umd", |
| 15 | + "dist": "npm run clean && webpack && cp -a public/. dist/", |
| 16 | + "lint": "eslint src demo --fix", |
| 17 | + "flow-check": "flow check", |
| 18 | + "flow": "flow", |
| 19 | + "umd": "npm run clean-umd && webpack --config webpack.config.umd.js" |
| 20 | + }, |
| 21 | + "author": "Ken Wheeler", |
| 22 | + "license": "MIT", |
| 23 | + "repository": "https://github.com/FormidableLabs/react-music", |
| 24 | + "dependencies": { |
| 25 | + "mobx": "^2.5.0", |
| 26 | + "mobx-react": "^3.5.5" |
| 27 | + }, |
| 28 | + "peerDependencies": { |
| 29 | + "react": "^15.2.1", |
| 30 | + "react-dom": "^15.2.1" |
| 31 | + }, |
| 32 | + "devDependencies": { |
| 33 | + "babel-cli": "^6.10.1", |
| 34 | + "babel-core": "^6.10.4", |
| 35 | + "babel-eslint": "^6.1.2", |
| 36 | + "babel-loader": "^6.2.4", |
| 37 | + "babel-plugin-transform-flow-strip-types": "^6.14.0", |
| 38 | + "babel-preset-es2015": "^6.9.0", |
| 39 | + "babel-preset-react": "^6.11.1", |
| 40 | + "babel-preset-stage-0": "^6.5.0", |
| 41 | + "css-loader": "^0.23.1", |
| 42 | + "eslint": "^3.3.1", |
| 43 | + "eslint-config-formidable": "^1.0.1", |
| 44 | + "eslint-plugin-filenames": "^1.1.0", |
| 45 | + "eslint-plugin-import": "^1.14.0", |
| 46 | + "eslint-plugin-jsx-a11y": "^2.1.0", |
| 47 | + "eslint-plugin-react": "^6.1.2", |
| 48 | + "flow-bin": "^0.31.1", |
| 49 | + "json-loader": "^0.5.4", |
| 50 | + "postcss-loader": "^0.10.1", |
| 51 | + "react": "^15.2.1", |
| 52 | + "react-dom": "^15.2.1", |
| 53 | + "rimraf": "^2.5.4", |
| 54 | + "style-loader": "^0.13.1", |
| 55 | + "webpack": "^1.13.1", |
| 56 | + "webpack-dev-server": "^1.15.0" |
| 57 | + } |
| 58 | +} |
0 commit comments