-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
63 lines (63 loc) · 2.28 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
{
"name": "@toruslabs/e2e-tests",
"version": "0.0.0",
"private": true,
"scripts": {
"lint": "eslint **/*.ts --fix",
"test:browser": "playwright test --headed",
"test": "playwright test",
"developerdashboard:config": "playwright test opendeveloperdashboard --grep=@smoke --workers=1 --headed --config=index.config.ts",
"test:authservice:case1": "playwright test authservice --grep=@nomfa --config=index.config.ts",
"test:authservice:case2": "playwright test authservice --grep=@nonemandatorymfa --config=index.config.ts",
"test:authservice:case3": "playwright test authservice --grep=@mandatorymfa --config=index.config.ts",
"walletservice:config": "playwright test walletservices/wallet-service --grep=@smoke --workers=1 --headed --config=index.config.ts",
"demowalletservice:config": "playwright test walletservices/demo-wallet-service --grep=@demo --workers=1 --headed --config=index.config.ts",
"trace:show": "playwright show-trace",
"install-deps": "playwright install-deps",
"docker:build": "docker build -t test-image .",
"docker:run": "docker run -it test-image /bin/bash"
},
"dependencies": {
"@playwright/test": "^1.45.3",
"@toruslabs/session-manager": "^2.0.0",
"axios": "^1.7.2",
"bip39": "^3.1.0",
"chance": "^1.1.12",
"dotenv": "^16.4.5",
"generate-password": "^1.7.1",
"playwright": "^1.45.3",
"reportportal-client": "https://github.com/wiibaker/client-javascript.git#master",
"serve-handler": "^6.1.5",
"speakeasy": "^2.0.0",
"testmail": "^1.0.0"
},
"devDependencies": {
"@playwright/test": "^1.45.3",
"@reportportal/agent-js-playwright": "^5.1.9",
"@rushstack/eslint-patch": "^1.0.0",
"@toruslabs/config": "^2.1.0",
"@toruslabs/eslint-config-node": "^3.3.1",
"@types/chance": "^1.1.6",
"@types/node": "^20.14.2",
"@types/serve-handler": "^6.1.4",
"@types/speakeasy": "^2.0.10",
"eslint": "^8.57.0",
"husky": "^9.1.3",
"lighthouse": "^12.1.0",
"lint-staged": "^15.2.7",
"prettier": "3.3.3",
"ts-node": "^10.9.2",
"typescript": "^5.5.4"
},
"lint-staged": {
"!(*.ts)": "prettier --write",
"*.ts": [
"eslint --cache --fix",
"prettier --write"
]
},
"engines": {
"node": ">=18.x",
"npm": ">=9.x"
}
}