|
| 1 | +{ |
| 2 | + "name": "rest-example", |
| 3 | + "version": "0.0.1", |
| 4 | + "description": "", |
| 5 | + "private": true, |
| 6 | + "scripts": { |
| 7 | + "start-client": "webpack-dev-server --history-api-fallback -d --hot --inline --no-info --port 3000 --host 0.0.0.0", |
| 8 | + "start-server": "nodemon src/api/index.js --watch src/api --exec babel-node", |
| 9 | + "start": "concurrently \"yarn run start-server\" \"yarn run start-client\"", |
| 10 | + "build": "webpack -p --progress --config ./webpack.config.js", |
| 11 | + "lint": "eslint src/", |
| 12 | + "test": "yarn run testonly && yarn run lint", |
| 13 | + "testonly": "mocha --compilers js:babel-core/register --reporter spec --full-trace ./src/**/*.spec.js" |
| 14 | + }, |
| 15 | + "repository": { |
| 16 | + "type": "git", |
| 17 | + "url": "https://github.com/js-accounts/rest-example" |
| 18 | + }, |
| 19 | + "keywords": [], |
| 20 | + "author": "Tim Mikeladze", |
| 21 | + "license": "MIT", |
| 22 | + "devDependencies": { |
| 23 | + "babel-cli": "^6.18.0", |
| 24 | + "babel-core": "^6.18.2", |
| 25 | + "babel-eslint": "^7.1.1", |
| 26 | + "babel-loader": "^6.2.8", |
| 27 | + "babel-preset-es2015": "^6.18.0", |
| 28 | + "babel-preset-react": "^6.16.0", |
| 29 | + "babel-preset-stage-0": "^6.16.0", |
| 30 | + "chai": "^3.5.0", |
| 31 | + "chai-as-promised": "^6.0.0", |
| 32 | + "concurrently": "^3.1.0", |
| 33 | + "coveralls": "^2.11.15", |
| 34 | + "dotenv-webpack": "^1.3.1", |
| 35 | + "eslint": "^3.10.2", |
| 36 | + "eslint-config-airbnb": "^13.0.0", |
| 37 | + "eslint-config-airbnb-base": "^10.0.1", |
| 38 | + "eslint-plugin-import": "^2.2.0", |
| 39 | + "eslint-plugin-jsx-a11y": "^2.2.3", |
| 40 | + "eslint-plugin-react": "^6.7.1", |
| 41 | + "html-webpack-plugin": "^2.24.1", |
| 42 | + "istanbul": "^1.1.0-alpha.1", |
| 43 | + "json-loader": "^0.5.4", |
| 44 | + "lodash": "^4.17.2", |
| 45 | + "mocha": "^3.1.2", |
| 46 | + "nodemon": "^1.11.0", |
| 47 | + "watch-ignore-webpack-plugin": "^1.0.0", |
| 48 | + "webpack": "^1.13.3", |
| 49 | + "webpack-dev-server": "^1.16.2", |
| 50 | + "yarn": "^0.17.8" |
| 51 | + }, |
| 52 | + "dependencies": { |
| 53 | + "body-parser": "^1.15.2", |
| 54 | + "express": "^4.14.0", |
| 55 | + "material-ui": "^0.16.4", |
| 56 | + "react": "^15.4.1", |
| 57 | + "react-dom": "^15.4.1", |
| 58 | + "react-helmet": "^3.2.2", |
| 59 | + "react-router": "^3.0.0", |
| 60 | + "react-tap-event-plugin": "^2.0.1" |
| 61 | + } |
| 62 | +} |
0 commit comments