This repository has been archived by the owner on Jan 10, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
66 lines (66 loc) · 1.88 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
{
"name": "safe-react-e2e-tests",
"description": "End to end integration tests for safe-react",
"repository": {
"type": "git",
"url": "https://github.com/gnosis/safe-reacte2e-tests.git"
},
"license": "MIT",
"author": {
"name": "Gnosis Team",
"email": "safe@gnosis.io"
},
"scripts": {
"lint:check": "eslint './src/**/*.{js,jsx,ts,tsx}'",
"test": "jest --detectOpenHandles",
"test-ci": "jest --detectOpenHandles --json --outputFile=output.json",
"test-local": "cross-env TESTING_ENV=local yarn test",
"test-pr": "cross-env TESTING_ENV=PR yarn test",
"debug-local": "npx ndb yarn test-local",
"format-tests-output": "node ./scripts/format-output.js > output.txt",
"write-tests-description": "node ./scripts/describe-tests.js > docs/coverage.md",
"prepare": "husky install"
},
"devDependencies": {
"@babel/core": "^7.15.0",
"@babel/preset-env": "^7.15.0",
"babel-jest": "^27.2.0",
"cross-env": "^7.0.3",
"dotenv": "^10.0.0",
"eslint": "^7.32.0",
"eslint-config-prettier": "^8.3.0",
"eslint-config-standard": "^16.0.3",
"eslint-plugin-import": "^2.24.2",
"eslint-plugin-jest": "^24.4.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^5.1.0",
"husky": "^7.0.2",
"jest": "^27.2.0",
"jest-cli": "^27.2.0",
"jest-puppeteer": "^5.0.4",
"lint-staged": "^11.1.2",
"ndb": "^1.1.5",
"pptr-testing-library": "^0.6.5",
"prettier": "^2.4.0"
},
"dependencies": {
"@dasanra/dappeteer": "^2.2.3",
"puppeteer": "^9.1.1",
"puppeteer-screen-recorder": "^2.0.2"
},
"jest": {
"preset": "jest-puppeteer",
"testTimeout": 180000,
"rootDir": "src"
},
"lint-staged": {
"src/**/*.{js,jsx,ts,tsx}": [
"eslint --fix",
"prettier --write"
],
"utils/**/*.{js,jsx,ts,tsx}": [
"eslint --fix",
"prettier --write"
]
}
}