Files
cypress/packages/runner/package.json
Brian Mann c72538d189 Fix lodash dupe dep (#7954)
* blow away yarn.lock

* bump lodash to 4.17.19

* reduce binary size again

* bump @types/node to correct version, fix types

* fix react + react-dom types

* add clean command for .ts conversion to .js files

* fix flaky test
2020-07-11 16:34:23 -04:00

56 lines
1.6 KiB
JSON

{
"name": "@packages/runner",
"version": "0.0.0",
"private": true,
"main": "src/index.js",
"scripts": {
"build": "webpack",
"build-prod": "cross-env NODE_ENV=production yarn build",
"clean-deps": "rm -rf node_modules",
"cypress:open": "node ../../scripts/cypress open",
"cypress:run": "node ../../scripts/cypress run",
"postinstall": "echo '@packages/runner needs: yarn build'",
"test": "yarn test-unit",
"test-debug": "yarn test-unit --inspect-brk=5566",
"test-unit": "mocha --config test/.mocharc.json src/**/*.spec.*",
"test-watch": "yarn test-unit --watch",
"watch": "webpack --watch --progress"
},
"devDependencies": {
"@cypress/react-tooltip": "0.5.3",
"@fortawesome/fontawesome-free": "5.12.1",
"@packages/driver": "*",
"@packages/reporter": "*",
"@packages/socket": "*",
"@packages/web-config": "*",
"ansi-to-html": "0.6.14",
"babel-plugin-prismjs": "1.0.2",
"bluebird": "3.5.3",
"chai": "4.2.0",
"chai-enzyme": "1.0.0-beta.1",
"classnames": "2.2.6",
"cross-env": "6.0.3",
"enzyme": "3.11.0",
"enzyme-adapter-react-16": "1.15.2",
"jsdom": "14.1.0",
"lodash": "4.17.19",
"mobx": "5.15.4",
"mobx-react": "6.1.8",
"mocha": "7.0.1",
"prismjs": "1.16.0",
"prop-types": "15.7.2",
"react": "16.8.6",
"react-dom": "16.8.6",
"react-input-autosize": "2.2.2",
"sinon": "7.5.0",
"sinon-chai": "3.3.0",
"snap-shot-core": "10.2.1",
"webpack": "4.35.3",
"webpack-cli": "3.3.2"
},
"files": [
"dist",
"lib"
]
}