joyent-portal/frontend/package.json

117 lines
3.4 KiB
JSON

{
"name": "joyent-portal-frontend",
"version": "1.1.0",
"private": true,
"license": "private",
"main": "server/index.js",
"directories": {
"test": "test",
"lib": "src"
},
"scripts": {
"start": "webpack-dev-server --open --config webpack/index.js",
"production": "node server",
"lint": "make lint",
"test": "make test",
"open": "nyc report --reporter=html & open coverage/index.html",
"coverage": "nyc check-coverage --statements 100 --functions 100 --lines 100 --branches 100",
"build-locales": " CONFIG=$(pwd)/webpack/index.js babel-node scripts/build-locales",
"clean-static": "git check-ignore static/** | xargs rm"
},
"dependencies": {
"@tomgco/joyent-portal-ui": "alpha",
"constant-case": "^2.0.0",
"css-loader": "^0.26.1",
"force-array": "^3.1.0",
"hapi": "^16.1.0",
"inert": "^4.1.0",
"inherits": "^2.0.3",
"lodash.find": "^4.6.0",
"lodash.flatten": "^4.4.0",
"lodash.get": "^4.4.2",
"lodash.isempty": "^4.4.0",
"lodash.template": "^4.4.0",
"lodash.uniq": "^4.5.0",
"param-case": "^2.1.0",
"querystring": "^0.2.0",
"react": "^15.4.2",
"react-a11y": "^0.3.3",
"react-dom": "^15.4.2",
"react-hot-loader": "^3.0.0-beta.6",
"react-intl": "^2.2.3",
"react-intl-redux": "^0.3.0",
"react-redux": "^5.0.2",
"react-router": "4.0.0-alpha.6",
"reduce-reducers": "^0.1.2",
"react-select": "^1.0.0-rc.2",
"redux": "^3.6.0",
"redux-actions": "^1.2.0",
"redux-batched-actions": "^0.1.5",
"redux-form": "^6.4.3",
"redux-logger": "^2.7.4",
"redux-promise-middleware": "^4.2.0",
"redux-thunk": "^2.1.0",
"require-hacker": "^2.1.4",
"reselect": "^2.5.4",
"styled-components": "^1.3.0",
"svg-react-loader": "^0.3.7",
"understood": "^1.0.1",
"url-loader": "^0.5.7"
},
"devDependencies": {
"ava": "^0.17.0",
"babel-cli": "^6.18.0",
"babel-core": "^6.21.0",
"babel-eslint": "^7.1.1",
"babel-loader": "^6.2.10",
"babel-plugin-syntax-async-functions": "^6.13.0",
"babel-plugin-transform-async-to-generator": "^6.16.0",
"babel-plugin-transform-es2015-modules-commonjs": "^6.18.0",
"babel-plugin-transform-object-rest-spread": "^6.20.2",
"babel-plugin-transform-runtime": "^6.15.0",
"babel-plugin-webpack-alias": "^2.1.2",
"babel-plugin-webpack-loaders": "^0.8.0",
"babel-preset-env": "^1.1.8",
"babel-preset-react": "^6.16.0",
"babel-register": "^6.18.0",
"enzyme": "^2.7.0",
"eslint": "^3.13.1",
"eslint-config-semistandard": "^7.0.0",
"eslint-config-standard": "^6.2.1",
"eslint-plugin-babel": "^4.0.0",
"eslint-plugin-jsx-a11y": "^3.0.2",
"eslint-plugin-promise": "^3.4.0",
"eslint-plugin-react": "^6.9.0",
"eslint-plugin-standard": "^2.0.1",
"fast-async": "^6.2.0",
"file-loader": "^0.9.0",
"jsdom": "^9.9.1",
"json-loader": "^0.5.4",
"ncp": "^2.0.0",
"node-hook": "^0.4.0",
"nyc": "^10.0.0",
"pre-commit": "^1.2.2",
"react-addons-test-utils": "^15.4.2",
"redux-ava": "^2.2.0",
"simple-mock": "^0.7.3",
"tap-xunit": "^1.5.1",
"thenify": "^3.2.1",
"webpack": "^2.1.0-beta.25",
"webpack-dev-server": "^1.16.2",
"webpack-shell-plugin": "^0.5.0"
},
"ava": {
"failFast": true,
"cache": false,
"require": [
"./test/_hook.js"
],
"babel": "inherit"
},
"pre-commit": [
"lint",
"test",
"coverage"
]
}