forked from Synthetixio/synpress
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
99 lines (99 loc) · 3.45 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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
{
"name": "@synthetixio/synpress",
"version": "1.2.0",
"description": "Synpress in an wrapper around Cypress test runner which extends its capabilities with conjunction of Puppeteer. It's used used across Synthetix projects.",
"keywords": [
"Synpress",
"Cypress",
"metamask",
"testing",
"e2e"
],
"homepage": "https://github.com/synthetixio/synpress#readme",
"bugs": {
"url": "https://github.com/synthetixio/synpress/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/synthetixio/synpress.git"
},
"license": "MIT",
"author": {
"name": "Synthetix"
},
"type": "commonjs",
"main": "launcher.js",
"bin": {
"synpress": "synpress.js"
},
"scripts": {
"fix": "npm run fix:eslint && npm run fix:prettier",
"fix:eslint": "eslint --fix **/*.js",
"fix:prettier": "prettier --write **/*.js",
"lint": "npm run lint:eslint && npm run lint:prettier",
"lint:eslint": "eslint . --ext js",
"lint:prettier": "prettier --check **/*.js",
"lint:sarif": "node lint.js . --ext js",
"release": "release-it --disable-metrics",
"release:major": "release-it major --disable-metrics",
"release:minor": "release-it minor --disable-metrics",
"release:patch": "release-it patch --disable-metrics",
"update:deps": "ncu -u -x 'node-fetch eslint' && npm install --legacy-peer-deps",
"start:server": "serve tests/test-dapp -p 3000",
"test:e2e": "start-server-and-test 'npm run start:server' http-get://localhost:3000 'SYNPRESS_LOCAL_TEST=true node synpress.js run --configFile=tests/e2e/config.json'",
"test:e2e:ci": "start-server-and-test 'npm run start:server' http-get://localhost:3000 'SYNPRESS_LOCAL_TEST=true node synpress.js run --group smoke-tests --record'"
},
"dependencies": {
"@cypress/code-coverage": "3.9.12",
"@cypress/react": "5.12.4",
"@cypress/webpack-dev-server": "1.8.4",
"@drptbl/gremlins.js": "2.2.1",
"@synthetixio/js": "2.41.0",
"@testing-library/cypress": "8.0.2",
"@testing-library/react": "13.0.0",
"@types/puppeteer-core": "5.4.0",
"@types/testing-library__cypress": "5.0.9",
"axios": "0.26.1",
"babel-plugin-istanbul": "6.1.1",
"babel-plugin-react-generate-property": "1.1.2",
"babel-plugin-react-remove-properties": "0.3.0",
"babel-plugin-transform-react-qa-classes": "1.6.0",
"babel-plugin-transform-react-styled-components-qa": "2.1.0",
"bytes32": "0.0.3",
"commander": "9.1.0",
"cross-zip": "4.0.0",
"cypress": "9.5.3",
"cypress-wait-until": "1.7.2",
"eslint": "7.32.0",
"eslint-config-prettier": "8.5.0",
"eslint-config-standard": "16.0.3",
"eslint-plugin-chai-friendly": "0.7.2",
"eslint-plugin-cypress": "2.12.1",
"eslint-plugin-import": "2.26.0",
"eslint-plugin-node": "11.1.0",
"eslint-plugin-prettier": "4.0.0",
"eslint-plugin-promise": "6.0.0",
"eslint-plugin-standard": "4.1.0",
"eslint-plugin-testing-library": "5.2.1",
"eslint-plugin-ui-testing": "2.0.1",
"eslint-plugin-unicorn": "42.0.0",
"etherscan-api": "10.0.5",
"node-fetch": "2.6.1",
"prettier": "2.6.2",
"puppeteer-core": "13.5.2",
"serve": "13.0.2",
"start-server-and-test": "1.14.0",
"synthetix-js": "2.66.2"
},
"devDependencies": {
"@microsoft/eslint-formatter-sarif": "2.1.7",
"npm-check-updates": "12.5.8",
"release-it": "14.14.0"
},
"engines": {
"node": ">=10"
},
"publishConfig": {
"access": "public"
}
}