joyent-portal/frontend/package.json

130 lines
4.0 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 --define process.env.BASELINE_GRID=false --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-intl": "^2.2.3",
"react-intl-redux": "^0.4.0",
"react-redux": "^5.0.2",
"react-router-dom": "4.0.0-beta.4",
"react-select": "^1.0.0-rc.3",
"reduce-reducers": "^0.1.2",
"redux": "^3.6.0",
"redux-actions": "^1.2.1",
"redux-batched-actions": "^0.1.5",
"redux-form": "^6.5.0",
"redux-logger": "^2.8.1",
"redux-promise-middleware": "^4.2.0",
"redux-thunk": "^2.2.0",
"require-hacker": "^2.1.4",
"reselect": "^2.5.4",
"style-loader": "^0.13.1",
"styled-components": "^1.4.3",
"svg-react-loader": "^0.3.7",
"understood": "^1.0.1",
"url-loader": "^0.5.7"
},
"devDependencies": {
"ava": "^0.18.2",
"babel-cli": "^6.23.0",
"babel-core": "^6.23.1",
"babel-eslint": "^7.1.1",
"babel-loader": "^6.3.2",
"babel-plugin-styled-components": "^1.0.0",
"babel-plugin-transform-class-properties": "^6.23.0",
"babel-plugin-transform-es2015-modules-commonjs": "^6.23.0",
"babel-plugin-transform-es2015-parameters": "^6.23.0",
"babel-plugin-transform-object-rest-spread": "^6.23.0",
"babel-plugin-transform-react-constant-elements": "^6.23.0",
"babel-plugin-transform-react-jsx": "^6.23.0",
"babel-plugin-transform-react-jsx-self": "^6.22.0",
"babel-plugin-transform-react-jsx-source": "^6.22.0",
"babel-plugin-transform-runtime": "^6.23.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.23.0",
"babel-register": "^6.23.0",
"case-sensitive-paths-webpack-plugin": "^1.1.4",
"enzyme": "^2.7.1",
"eslint": "^3.16.0",
"eslint-config-react-app": "^0.5.1",
"eslint-config-semistandard": "^7.0.0",
"eslint-config-standard": "^6.2.1",
"eslint-loader": "^1.6.1",
"eslint-plugin-babel": "^4.0.1",
"eslint-plugin-jsx-a11y": "^4.0.0",
"eslint-plugin-promise": "^3.4.2",
"eslint-plugin-react": "^6.10.0",
"eslint-plugin-standard": "^2.0.1",
"file-loader": "^0.10.0",
"jsdom": "^9.11.0",
"json-loader": "^0.5.4",
"ncp": "^2.0.0",
"node-hook": "^0.4.0",
"nyc": "^10.1.2",
"pre-commit": "^1.2.2",
"react-addons-test-utils": "^15.4.2",
"react-dev-utils": "^0.5.0",
"redux-ava": "^2.2.0",
"simple-mock": "^0.7.3",
"stylelint": "^7.9.0",
"stylelint-config-standard": "^16.0.0",
"stylelint-processor-styled-components": "^0.0.4",
"tap-xunit": "^1.7.0",
"thenify": "^3.2.1",
"url-loader": "^0.5.7",
"webpack": "^2.2.1",
"webpack-dev-server": "^2.4.1",
"webpack-manifest-plugin": "^1.1.0",
"webpack-shell-plugin": "^0.5.0"
},
"ava": {
"failFast": true,
"cache": false,
"require": [
"./test/_hook.js"
],
"babel": "inherit"
},
"pre-commit": [
"lint",
"test",
"coverage"
]
}