package.json
{
"name": "cloudgov-dashboard",
"version": "1.18.1",
"repository": {
"type": "git",
"url": "git://github.com/18F/cg-dashboard.git"
},
"engines": {
"node": "6.x.x",
"npm": "3.x.x"
},
"description": "A web dashboard for managing Cloud Foundry apps",
"scripts": {
"build": "npm run clean && webpack --config webpack.config.js",
"build-prod": "npm run clean && webpack -p --config webpack.config.js",
"build-style": "cd node_modules/cloudgov-style && npm install && npm run build",
"check-style": "/bin/bash -c '[[ $(npm ls cloudgov-style) =~ \"git://github.com\" ]] && npm run build-style || exit 0'",
"clean": "rm -rf ./static/assets/*",
"dev-start": "cf dev start && docker-compose up -d app frontend watch",
"dev-stop": "cf dev stop && docker-compose stop",
"lint": "eslint --ext .js --ext .jsx ./static_src",
"format": "prettier --write \"**/*.{css,js,jsx,json,md}\"",
"format-check": "prettier --list-different \"**/*.{css,js,jsx,json,md}\"",
"test": "npm run format-check && npm run lint && npm run test-unit && npm run test-functional",
"test-functional": "npm run testing-server-run -- wdio wdio.conf.js",
"test-performance": "JASMINE_CONFIG_PATH=./static_src/test/perf/jasmine.json npm run testing-server-run -- jasmine",
"test-unit": "TZ=UTC NODE_ENV=test karma start --single-run",
"test-selenium-install": "selenium-standalone install",
"testing-server": "PORT=8001 npm run testing-server-run",
"testing-server-run": "TZ=UTC NODE_ENV=test node ./static_src/test/server/server.js",
"track-performance": "PORT=8002 npm run testing-server-run -- lighthouse http://localhost:8002/#/ --config-path ./static_src/test/perf/audits.json --output 'json' --output-path '$CIRCLE_ARTIFACTS/perf-$CIRCLE_BUILD_NUM.json' --verbose",
"watch-server": "npm run testing-server & npm run watch",
"watch-test-unit": "TZ=UTC NODE_ENV=test karma start --browsers Chrome",
"watch-test-functional": "npm run test-functional -- --watch",
"watch": "webpack --watch"
},
"author": "Marco Segreto (marco.segreto@gsa.gov)",
"contributors": [
{
"name": "Jeremia Kimelman",
"email": "jeremia.kimelman@gsa.gov"
},
{
"name": "Britta Gustafson",
"email": "britta.gustafson@gsa.gov"
},
{
"name": "Julia Elman",
"email": "juila.elman@gsa.gov"
},
{
"name": "Dan Williams",
"email": "daniel.williams@gsa.gov"
},
{
"name": "James C Scott III",
"email": "jamesc.scott@gsa.gov"
}
],
"license": "CC0-1.0",
"dependencies": {
"ajv": "^5.5.2",
"axios": "^0.15.3",
"babel-core": "^6.26.0",
"babel-loader": "^7.1.2",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-plugin-transform-runtime": "^6.3.13",
"babel-polyfill": "^6.26.0",
"babel-preset-es2015": "^6.18.0",
"babel-preset-react": "^6.16.0",
"babel-runtime": "^6.26.0",
"classnames": "^2.1.5",
"cloudgov-style": "^2.6.5",
"css-loader": "^0.23.0",
"dedent": "^0.6.0",
"director": "^1.2.8",
"events": "^1.0.2",
"extract-text-webpack-plugin": "^3.0.2",
"file-loader": "^0.8.5",
"flux": "^2.1.1",
"immutable": "^3.8.2",
"imports-loader": "^0.6.4",
"inert": "^4.2.1",
"jasmine-core": "^2.8.0",
"json-loader": "^0.5.7",
"jsx-loader": "^0.13.2",
"keymirror": "^0.1.1",
"moment": "^2.20.1",
"moment-timezone": "^0.5.14",
"node-libs-browser": "^0.5.2",
"normalize.css": "^3.0.3",
"prop-types": "^15.6.0",
"query-string": "^4.3.4",
"react": "^15.6.2",
"react-dom": "^15.6.2",
"react-hot-loader": "^1.3.1",
"react-jasmine-matchers": "^2.0.0",
"style-loader": "^0.13.0",
"url-loader": "^0.6.2",
"watch": "^0.16.0",
"webpack": "^3.10.0"
},
"devDependencies": {
"babel-eslint": "^7.1.1",
"babel-register": "^6.26.0",
"enzyme": "^2.9.1",
"eslint": "3.14.1",
"eslint-config-airbnb": "10.0.1",
"eslint-config-prettier": "^2.7.0",
"eslint-plugin-import": "^1.13.0",
"eslint-plugin-jasmine": "^2.9.1",
"eslint-plugin-jsx-a11y": "^2.1.0",
"eslint-plugin-react": "^6.0.0",
"hapi": "https://registry.npmjs.org/hapi/-/hapi-14.2.0.tgz",
"jasmine": "^2.8.0",
"jasmine-enzyme": "^2.1.0",
"jasmine-sinon": "^0.4.0",
"karma": "^1.7.1",
"karma-chrome-launcher": "^1.0.1",
"karma-jasmine": "^1.1.1",
"karma-jasmine-matchers": "^0.1.3",
"karma-jasmine-sinon": "^1.0.4",
"karma-sourcemap-loader": "^0.3.7",
"karma-webpack": "^2.0.9",
"lighthouse": "^1.6.3",
"moxios": "^0.4.0",
"prettier": "^1.9.2",
"react-addons-test-utils": "^15.6.2",
"selenium-standalone": "^5.11.0",
"sinon": "^2.4.1",
"smocks": "^4.0.6",
"wdio-jasmine-framework": "^0.2.19",
"wdio-selenium-standalone-service": "0.0.7",
"webdriverio": "^4.9.11"
}
}