forked from cypress-io/cypress
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
68 lines (68 loc) · 2.12 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
{
"name": "@packages/runner-ct",
"version": "0.0.0-development",
"private": true,
"browser": "src/index.js",
"scripts": {
"build": "webpack",
"build-prod": "cross-env NODE_ENV=production yarn build && tsc",
"clean-deps": "rm -rf node_modules",
"cypress:open": "ts-node ../../scripts/cypress.js open-ct --project ${PWD}",
"cypress:run": "ts-node ../../scripts/cypress.js run-ct --project ${PWD}",
"postinstall": "echo '@packages/runner needs: yarn build'",
"lint": "eslint --ext .js,.jsx,.ts,.tsx,.json src",
"test": "ts-node ../../scripts/cypress.js run-ct --project ${PWD}",
"watch": "webpack --watch --progress --config webpack.config.ts"
},
"dependencies": {},
"devDependencies": {
"@babel/core": "^7.12.3",
"@babel/preset-env": "^7.12.1",
"@cypress/design-system": "0.0.0-development",
"@cypress/react-tooltip": "0.5.3",
"@fortawesome/free-regular-svg-icons": "5.15.2",
"@fortawesome/react-fontawesome": "^0.1.14",
"@packages/driver": "0.0.0-development",
"@types/http-proxy": "1.17.4",
"@types/node": "14.14.31",
"@types/sockjs-client": "1.1.0",
"babel-loader": "8.1.0",
"bluebird": "3.5.3",
"cash-dom": "^8.1.0",
"chai": "^4.2.0",
"classnames": "2.3.1",
"clean-webpack-plugin": "^3.0.0",
"cypress-real-events": "1.4.0",
"dart-sass": "^1.25.0",
"eslint-plugin-mocha": "^8.0.0",
"eslint-plugin-react": "^7.22.0",
"eslint-plugin-react-hooks": "^4.2.0",
"express": "^4.17.1",
"fuzzysort": "^1.1.4",
"hotkeys-js": "3.8.2",
"html-webpack-plugin": "^4.5.0",
"koa": "^2.13.0",
"mobx": "5.15.4",
"mobx-react": "6.1.8",
"mocha": "^8.1.3",
"nanoid": "3.1.20",
"react": "16.8.6",
"react-devtools-inline": "^4.10.1",
"react-dom": "16.8.6",
"react-split-pane": "^0.1.92",
"sass-loader": "^10.0.3",
"sockjs-client": "^1.5.0",
"strip-ansi": "6.0.0",
"ts-loader": "^8.0.5",
"ts-node": "8.3.0",
"watch": "^1.0.2",
"webpack": "4.44.2"
},
"peerDependencies": {
"webpack": "^4.0.0 || ^5.0.0",
"webpack-dev-middleware": "*"
},
"files": [
"dist"
]
}