|
| 1 | +{ |
| 2 | + "name": "test-generator", |
| 3 | + "version": "1.0.0", |
| 4 | + "description": "A Test generation library", |
| 5 | + "repository": { |
| 6 | + "type": "git", |
| 7 | + "url": "git://github.com/wednesday-solutions/test-generator.git" |
| 8 | + }, |
| 9 | + "engines": { |
| 10 | + "npm": ">=5", |
| 11 | + "node": ">=8.15.1" |
| 12 | + }, |
| 13 | + "author": "Wednesday Solutions", |
| 14 | + "license": "MIT", |
| 15 | + "scripts": { |
| 16 | + "analyze:clean": "rimraf stats.json", |
| 17 | + "preanalyze": "npm run analyze:clean", |
| 18 | + "analyze": "node ./internals/scripts/analyze.js", |
| 19 | + "extract-intl": "node ./internals/scripts/extract-intl.js", |
| 20 | + "prebuild": "npm run build:clean", |
| 21 | + "build": "cross-env NODE_ENV=production webpack --config internals/webpack/webpack.prod.babel.js --color -p --progress --hide-modules --display-optimization-bailout", |
| 22 | + "build:clean": "rimraf ./build", |
| 23 | + "start": "cross-env NODE_ENV=development node server", |
| 24 | + "start:tunnel": "cross-env NODE_ENV=development ENABLE_TUNNEL=true node server", |
| 25 | + "start:production": "npm run test && npm run build && npm run start:prod", |
| 26 | + "start:prod": "cross-env NODE_ENV=production node server", |
| 27 | + "presetup": "npm i chalk shelljs", |
| 28 | + "setup": "node ./internals/scripts/setup.js", |
| 29 | + "clean": "shjs ./internals/scripts/clean.js", |
| 30 | + "clean:all": "npm run analyze:clean && npm run test:clean && npm run build:clean", |
| 31 | + "gentest": "plop --plopfile generators/index.js -f", |
| 32 | + "lint": "npm run lint:js && npm run lint:css", |
| 33 | + "lint:css": "stylelint app/**/*.js", |
| 34 | + "lint:eslint": "eslint --ignore-path .gitignore --ignore-pattern internals/scripts", |
| 35 | + "lint:eslint:fix": "eslint --ignore-path .gitignore --ignore-pattern internals/scripts --fix", |
| 36 | + "lint:js": "npm run lint:eslint -- . ", |
| 37 | + "lint:staged": "lint-staged", |
| 38 | + "pretest": "#npm run test:clean && npm run lint", |
| 39 | + "test:clean": "rimraf ./coverage", |
| 40 | + "test": "cross-env NODE_ENV=test jest", |
| 41 | + "test:watch": "cross-env NODE_ENV=test jest --watchAll", |
| 42 | + "coveralls": "cat ./coverage/lcov.info | coveralls", |
| 43 | + "prettify": "prettier --write" |
| 44 | + }, |
| 45 | + "lint-staged": { |
| 46 | + "*.js": [ |
| 47 | + "npm run lint:eslint:fix", |
| 48 | + "git add --force" |
| 49 | + ], |
| 50 | + "*.json": [ |
| 51 | + "prettier --write", |
| 52 | + "git add --force" |
| 53 | + ] |
| 54 | + }, |
| 55 | + "pre-commit": "lint:staged", |
| 56 | + "resolutions": { |
| 57 | + "babel-core": "7.0.0-bridge.0" |
| 58 | + }, |
| 59 | + "dependencies": { |
| 60 | + "@babel/polyfill": "7.4.3", |
| 61 | + "chalk": "^2.4.2", |
| 62 | + "compression": "1.7.4", |
| 63 | + "connected-react-router": "6.4.0", |
| 64 | + "cross-env": "5.2.0", |
| 65 | + "enzyme": "^3.10.0", |
| 66 | + "enzyme-adapter-react-16": "^1.14.0", |
| 67 | + "express": "4.16.4", |
| 68 | + "fontfaceobserver": "2.1.0", |
| 69 | + "history": "4.9.0", |
| 70 | + "hoist-non-react-statics": "3.3.0", |
| 71 | + "immer": "3.0.0", |
| 72 | + "intl": "1.2.5", |
| 73 | + "invariant": "2.2.4", |
| 74 | + "ip": "1.1.5", |
| 75 | + "lodash": "4.17.11", |
| 76 | + "minimist": "1.2.0", |
| 77 | + "prop-types": "15.7.2", |
| 78 | + "react": "16.8.6", |
| 79 | + "react-dom": "16.8.6", |
| 80 | + "react-helmet": "6.0.0-beta", |
| 81 | + "react-intl": "2.8.0", |
| 82 | + "react-redux": "7.0.2", |
| 83 | + "react-router-dom": "5.0.0", |
| 84 | + "redux": "4.0.1", |
| 85 | + "redux-saga": "1.0.2", |
| 86 | + "reselect": "4.0.0", |
| 87 | + "sanitize.css": "8.0.0", |
| 88 | + "styled-components": "4.2.0" |
| 89 | + }, |
| 90 | + "devDependencies": { |
| 91 | + "@babel/cli": "7.4.3", |
| 92 | + "@babel/core": "7.4.3", |
| 93 | + "@babel/plugin-proposal-class-properties": "7.4.0", |
| 94 | + "@babel/plugin-syntax-dynamic-import": "7.2.0", |
| 95 | + "@babel/plugin-transform-modules-commonjs": "7.4.3", |
| 96 | + "@babel/plugin-transform-react-constant-elements": "7.2.0", |
| 97 | + "@babel/plugin-transform-react-inline-elements": "7.2.0", |
| 98 | + "@babel/preset-env": "7.4.3", |
| 99 | + "@babel/preset-react": "7.0.0", |
| 100 | + "@babel/register": "7.4.0", |
| 101 | + "add-asset-html-webpack-plugin": "3.1.3", |
| 102 | + "babel-core": "7.0.0-bridge.0", |
| 103 | + "babel-eslint": "10.0.1", |
| 104 | + "babel-loader": "8.0.5", |
| 105 | + "babel-plugin-dynamic-import-node": "2.2.0", |
| 106 | + "babel-plugin-lodash": "3.3.4", |
| 107 | + "babel-plugin-react-intl": "3.0.1", |
| 108 | + "babel-plugin-styled-components": "1.10.0", |
| 109 | + "babel-plugin-transform-react-remove-prop-types": "0.4.24", |
| 110 | + "circular-dependency-plugin": "5.0.2", |
| 111 | + "compare-versions": "3.4.0", |
| 112 | + "compression-webpack-plugin": "2.0.0", |
| 113 | + "coveralls": "3.0.3", |
| 114 | + "css-loader": "2.1.1", |
| 115 | + "eslint": "5.16.0", |
| 116 | + "eslint-config-airbnb": "17.1.0", |
| 117 | + "eslint-config-airbnb-base": "13.1.0", |
| 118 | + "eslint-config-prettier": "4.1.0", |
| 119 | + "eslint-import-resolver-webpack": "0.11.1", |
| 120 | + "eslint-plugin-import": "2.17.2", |
| 121 | + "eslint-plugin-jsx-a11y": "6.2.1", |
| 122 | + "eslint-plugin-prettier": "3.0.1", |
| 123 | + "eslint-plugin-react": "7.12.4", |
| 124 | + "eslint-plugin-react-hooks": "1.6.0", |
| 125 | + "eslint-plugin-redux-saga": "1.0.0", |
| 126 | + "file-loader": "3.0.1", |
| 127 | + "html-loader": "0.5.5", |
| 128 | + "html-webpack-plugin": "3.2.0", |
| 129 | + "image-webpack-loader": "4.6.0", |
| 130 | + "imports-loader": "0.8.0", |
| 131 | + "jest-cli": "24.7.1", |
| 132 | + "jest-dom": "3.1.3", |
| 133 | + "jest-styled-components": "6.3.1", |
| 134 | + "lint-staged": "8.1.5", |
| 135 | + "ngrok": "3.1.1", |
| 136 | + "node-plop": "0.18.0", |
| 137 | + "null-loader": "0.1.1", |
| 138 | + "offline-plugin": "5.0.6", |
| 139 | + "plop": "2.3.0", |
| 140 | + "pre-commit": "1.2.2", |
| 141 | + "prettier": "1.17.0", |
| 142 | + "react-app-polyfill": "0.2.2", |
| 143 | + "react-test-renderer": "16.8.6", |
| 144 | + "react-testing-library": "6.1.2", |
| 145 | + "rimraf": "2.6.3", |
| 146 | + "shelljs": "^0.8.3", |
| 147 | + "style-loader": "0.23.1", |
| 148 | + "stylelint": "10.0.1", |
| 149 | + "stylelint-config-recommended": "2.2.0", |
| 150 | + "stylelint-config-styled-components": "0.1.1", |
| 151 | + "stylelint-processor-styled-components": "1.6.0", |
| 152 | + "svg-url-loader": "2.3.2", |
| 153 | + "terser-webpack-plugin": "1.2.3", |
| 154 | + "url-loader": "1.1.2", |
| 155 | + "webpack": "4.30.0", |
| 156 | + "webpack-cli": "3.3.0", |
| 157 | + "webpack-dev-middleware": "3.6.2", |
| 158 | + "webpack-hot-middleware": "2.24.3", |
| 159 | + "webpack-pwa-manifest": "4.0.0", |
| 160 | + "whatwg-fetch": "3.0.0" |
| 161 | + } |
| 162 | +} |
0 commit comments