| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118 |
- {
- "name": "coriolis-web",
- "version": "1.5.1",
- "license": "AGPL-3.0",
- "scripts": {
- "start": "npm run env:dev && node server.js --dev",
- "env:dev": "cross-env NODE_ENV=development",
- "env:prod": "cross-env NODE_ENV=production",
- "cypress": "cypress open",
- "test": "jest",
- "testc": "jest --runInBand -t 'WizardStorage Component'",
- "storybook": "start-storybook -p 9001 -c private/storybook",
- "lint": "eslint src private webpack.config.js --ext js,jsx",
- "build:clean": "rimraf \"dist/!(.git*|Procfile)**\"",
- "build:copy": "copyfiles -u 1 public/* public/**/* dist",
- "prebuild": "npm run build:clean && npm run build:copy",
- "build": "npm run env:prod -- webpack",
- "flow": "flow",
- "flow-typed": "rimraf flow-typed/npm && flow-typed install --overwrite || true"
- },
- "jest": {
- "verbose": true,
- "moduleDirectories": [
- "src",
- "node_modules"
- ],
- "moduleNameMapper": {
- "^.+\\.(jpg|jpeg|png|gif|eot|otf|webp|svg|ttf|woff|woff2|mp4|webm|wav|mp3|m4a|aac|oga)$": "<rootDir>/private/jest/fileMock.js",
- "^components$": "<rootDir>/private/jest/componentsMock.js"
- },
- "setupFiles": [
- "<rootDir>/private/jest/shim.js",
- "<rootDir>/private/jest/setupTests.js"
- ],
- "testURL": "http://localhost/"
- },
- "devDependencies": {
- "@storybook/react": "^3.2.15",
- "babel-eslint": "^8.0.1",
- "babel-jest": "^21.2.0",
- "cypress": "^3.2.0",
- "enzyme": "^3.9.0",
- "enzyme-adapter-react-16": "^1.11.2",
- "eslint": "^4.8.0",
- "eslint-config-airbnb": "^15.1.0",
- "eslint-plugin-cypress": "^2.0.1",
- "eslint-plugin-flowtype": "^2.46.1",
- "eslint-plugin-import": "^2.7.0",
- "eslint-plugin-jsx-a11y": "^6.0.2",
- "eslint-plugin-react": "7.10.0",
- "flow-bin": "0.78.0",
- "flow-typed": "2.5.1",
- "jest": "22",
- "react-test-renderer": "^16.0.0",
- "sinon": "^4.1.2",
- "webpack-dev-middleware": "^1.12.0",
- "webpack-hot-middleware": "^2.19.1"
- },
- "dependencies": {
- "@webpack-blocks/webpack2": "^0.4.0",
- "ansi-to-html": "^0.6.12",
- "autobind-decorator": "^2.1.0",
- "axios": "^0.18.0",
- "babel-core": "^6.26.0",
- "babel-loader": "^7.1.2",
- "babel-plugin-styled-components": "^1.2.1",
- "babel-plugin-transform-decorators-legacy": "^1.3.4",
- "babel-plugin-transform-es2015-modules-commonjs": "^6.26.0",
- "babel-plugin-transform-react-remove-prop-types": "^0.4.9",
- "babel-polyfill": "^6.26.0",
- "babel-preset-env": "^1.6.0",
- "babel-preset-flow": "^6.23.0",
- "babel-preset-react": "^6.24.1",
- "babel-preset-stage-1": "^6.24.1",
- "babel-register": "^6.26.0",
- "body-parser": "^1.18.2",
- "copyfiles": "^1.2.0",
- "cross-env": "^5.0.5",
- "express": "^4.16.1",
- "file-loader": "^1.1.5",
- "file-saver": "^2.0.2",
- "fs": "^0.0.1-security",
- "history": "^4.7.2",
- "html-webpack-plugin": "^2.30.1",
- "js-cookie": "^2.1.4",
- "jszip": "^3.2.2",
- "lodash": "^4.17.13",
- "mobx": "^3.6.1",
- "mobx-react": "^4.4.2",
- "moment": "^2.18.1",
- "moment-timezone": "^0.5.21",
- "ms-rest-azure": "^2.4.5",
- "path": "^0.12.7",
- "raw-loader": "^0.5.1",
- "react": "^16.0.0",
- "react-collapse": "^4.0.3",
- "react-datetime": "^2.10.3",
- "react-dom": "^16.0.0",
- "react-hot-loader": "next",
- "react-modal": "^3.0.4",
- "react-motion": "^0.5.2",
- "react-notification-system": "^0.2.15",
- "react-router-dom": "^4.2.2",
- "react-tooltip": "^3.10.0",
- "request": "^2.88.0",
- "require-without-cache": "^0.0.6",
- "rimraf": "^2.6.2",
- "styled-components": "2.2.0",
- "styled-tools": "^0.2.2",
- "url-loader": "^0.6.2",
- "webpack": "^3.6.0",
- "webpack-blocks-happypack": "^0.1.3",
- "webpack-blocks-split-vendor": "^0.2.1"
- },
- "resolutions": {
- "mem": "^4.0.0"
- }
- }
|