joyent-portal/frontend/package.json

75 lines
2.2 KiB
JSON
Raw Normal View History

2016-10-20 04:14:26 +03:00
{
2016-10-20 15:36:24 +03:00
"name": "joyent-dashboard-frontend",
2016-10-20 04:14:26 +03:00
"version": "1.0.0",
"private": true,
"license": "private",
"scripts": {
"start": "webpack-dev-server --open --config webpack/index.js",
"lint": "eslint .",
"test": "NODE_ENV=test nyc ava test/*.js --verbose",
"open": "nyc report --reporter=html & open coverage/index.html",
"coverage": "nyc check-coverage --statements 100 --functions 100 --lines 100 --branches 100"
2016-10-20 04:14:26 +03:00
},
"dependencies": {
"babel-core": "^6.17.0",
"babel-loader": "^6.2.5",
"babel-plugin-add-module-exports": "^0.2.1",
"babel-plugin-syntax-async-functions": "^6.13.0",
"babel-plugin-transform-es2015-modules-commonjs": "^6.16.0",
"babel-plugin-transform-object-rest-spread": "^6.16.0",
"babel-preset-react": "^6.16.0",
"constant-case": "^2.0.0",
"css-loader": "^0.25.0",
2016-10-20 04:14:26 +03:00
"fast-async": "^6.1.1",
"json-loader": "^0.5.4",
"postcss-loader": "^1.0.0",
2016-10-20 04:14:26 +03:00
"react": "^15.3.2",
"react-css-modules": "^3.7.10",
2016-10-20 04:14:26 +03:00
"react-dom": "^15.3.2",
"react-hot-loader": "^3.0.0-beta.6",
"react-redux": "^4.4.5",
"react-router": "^4.0.0-alpha.4",
"reduce-reducers": "^0.1.2",
"redux": "^3.6.0",
"redux-actions": "^0.12.0",
"redux-batched-actions": "^0.1.3",
"redux-logger": "^2.7.0",
"redux-promise-middleware": "^4.1.0",
"redux-thunk": "^2.1.0",
"style-loader": "^0.13.1",
"webpack": "^2.1.0-beta.25"
2016-10-20 04:14:26 +03:00
},
"devDependencies": {
"ava": "^0.16.0",
"babel-eslint": "^7.0.0",
"babel-plugin-transform-async-to-generator": "^6.16.0",
"babel-plugin-transform-runtime": "^6.15.0",
"babel-register": "^6.16.3",
"enzyme": "^2.5.1",
"eslint": "^3.8.1",
"eslint-config-semistandard": "^7.0.0",
"eslint-config-standard": "^6.2.0",
"eslint-plugin-babel": "^3.3.0",
"eslint-plugin-promise": "^3.3.0",
"eslint-plugin-react": "^6.4.1",
"eslint-plugin-standard": "^2.0.1",
"nyc": "^8.3.1",
"pre-commit": "^1.1.3",
"react-addons-test-utils": "^15.3.2",
"webpack-dev-server": "^1.16.2"
2016-10-20 04:14:26 +03:00
},
"ava": {
"failFast": true,
"cache": false,
"require": [
"babel-register"
],
"babel": "inherit"
},
"pre-commit": [
"lint",
"test",
"coverage"
]
}