|
| 1 | +{ |
| 2 | + "name": "re-starter", |
| 3 | + "version": "0.1.0", |
| 4 | + "description": "A minimal skeleton React starter kit", |
| 5 | + "scripts": { |
| 6 | + "clean": "rimraf dist", |
| 7 | + "build:webpack": "NODE_ENV=production webpack -p --config webpack.config.prod.js", |
| 8 | + "build": "npm run clean && npm run build:webpack", |
| 9 | + "start": "node bin/dev.js", |
| 10 | + "lint": "eslint src --ext .js || true", |
| 11 | + "lint:fix": "eslint src --ext .js --fix || true" |
| 12 | + }, |
| 13 | + "repository": { |
| 14 | + "type": "git", |
| 15 | + "url": "https://github.com/octopitus/re-starter.git" |
| 16 | + }, |
| 17 | + "keywords": [ |
| 18 | + "react", |
| 19 | + "starterkit", |
| 20 | + "minimal" |
| 21 | + ], |
| 22 | + "author": "Luy Tran <[email protected]>", |
| 23 | + "license": "MIT", |
| 24 | + "bugs": { |
| 25 | + "url": "https://github.com/octopitus/re-starter/issues" |
| 26 | + }, |
| 27 | + "homepage": "https://github.com/octopitus/re-starter", |
| 28 | + "devDependencies": { |
| 29 | + "autoprefixer": "^6.3.3", |
| 30 | + "babel-core": "^6.3.17", |
| 31 | + "babel-eslint": "^5.0.0-beta6", |
| 32 | + "babel-loader": "^6.2.0", |
| 33 | + "babel-plugin-react-transform": "^2.0.0", |
| 34 | + "babel-plugin-transform-runtime": "^6.3.13", |
| 35 | + "babel-polyfill": "^6.5.0", |
| 36 | + "babel-preset-es2015": "^6.3.13", |
| 37 | + "babel-preset-react": "^6.3.13", |
| 38 | + "babel-preset-stage-0": "^6.3.13", |
| 39 | + "babel-register": "^6.3.13", |
| 40 | + "babel-runtime": "^6.3.19", |
| 41 | + "css-loader": "^0.23.1", |
| 42 | + "eslint": "^2.0.0-rc.1", |
| 43 | + "eslint-config-standard": "^5.1.0", |
| 44 | + "eslint-config-standard-react": "^2.3.0", |
| 45 | + "eslint-plugin-babel": "^3.0.0", |
| 46 | + "eslint-plugin-promise": "^1.0.8", |
| 47 | + "eslint-plugin-react": "^3.16.1", |
| 48 | + "eslint-plugin-standard": "^1.3.2", |
| 49 | + "eventsource-polyfill": "^0.9.6", |
| 50 | + "express": "^4.13.3", |
| 51 | + "extract-text-webpack-plugin": "^1.0.1", |
| 52 | + "html-webpack-plugin": "^2.8.2", |
| 53 | + "postcss-loader": "^0.8.1", |
| 54 | + "postcss-nested": "^1.0.0", |
| 55 | + "react-addons-test-utils": "^0.14.7", |
| 56 | + "react-transform-catch-errors": "^1.0.2", |
| 57 | + "react-transform-hmr": "^1.0.2", |
| 58 | + "redbox-react": "^1.2.2", |
| 59 | + "rimraf": "^2.4.3", |
| 60 | + "style-loader": "^0.13.0", |
| 61 | + "webpack": "^1.12.9", |
| 62 | + "webpack-dev-middleware": "^1.4.0", |
| 63 | + "webpack-hot-middleware": "^2.6.0" |
| 64 | + }, |
| 65 | + "dependencies": { |
| 66 | + "react": "^0.14.3", |
| 67 | + "react-dom": "^0.14.3" |
| 68 | + } |
| 69 | +} |
0 commit comments