110 lines
3.2 KiB
JSON
110 lines
3.2 KiB
JSON
{
|
|
"name": "joyent-portal-frontend",
|
|
"version": "1.0.0",
|
|
"private": true,
|
|
"license": "private",
|
|
"main": "src/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 NODE_ENV=test babel-node scripts/build-locales",
|
|
"clean-static": "git check-ignore static/** | xargs rm"
|
|
},
|
|
"dependencies": {
|
|
"constant-case": "^2.0.0",
|
|
"express": "^4.14.0",
|
|
"force-array": "^3.1.0",
|
|
"inherits": "^2.0.3",
|
|
"locale": "^0.1.0",
|
|
"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.1",
|
|
"react-a11y": "^0.3.3",
|
|
"react-dom": "^15.4.1",
|
|
"react-hot-loader": "^3.0.0-beta.6",
|
|
"react-intl": "^2.1.5",
|
|
"react-intl-redux": "^0.2.0",
|
|
"react-redux": "^5.0.1",
|
|
"react-router": "^4.0.0-alpha.4",
|
|
"reduce-reducers": "^0.1.2",
|
|
"redux": "^3.6.0",
|
|
"redux-actions": "^1.2.0",
|
|
"redux-batched-actions": "^0.1.5",
|
|
"redux-logger": "^2.7.4",
|
|
"redux-promise-middleware": "^4.2.0",
|
|
"redux-thunk": "^2.1.0",
|
|
"reselect": "^2.5.4",
|
|
"st": "^1.2.0",
|
|
"styled-components": "^1.2.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.4",
|
|
"babel-preset-react": "^6.16.0",
|
|
"babel-register": "^6.18.0",
|
|
"enzyme": "^2.7.0",
|
|
"eslint": "^3.12.2",
|
|
"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.8.0",
|
|
"eslint-plugin-standard": "^2.0.1",
|
|
"fast-async": "^6.1.2",
|
|
"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.1",
|
|
"redux-ava": "^2.2.0",
|
|
"simple-mock": "^0.7.3",
|
|
"tap-xunit": "^1.5.0",
|
|
"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"
|
|
]
|
|
}
|