-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
37 lines (37 loc) · 1.16 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
{
"name": "moralis-tech-task",
"version": "1.0.0",
"author": "Oleksii Kvasov",
"license": "MIT",
"description": "The test framework as a sample and task for moralis admin app",
"scripts": {
"html-report": "bun playwright show-report test-html-report",
"prepare": "husky",
"lint": "eslint ./",
"lint-fix": "eslint --fix ./",
"pw-debug-mode": "yarn playwright test --debug",
"setup-auth": "bun playwright test auth.setup.ts",
"test-e2e": "bun playwright test --grep @e2e",
"test-ui": "bun playwright test --grep @ui",
"test-api": "bun playwright test --grep @api",
"test-k6-load": "k6 run --compatibility-mode=extended ./tests/load/k6-moralis-wallet-api.js"
},
"dependencies": {
"@playwright/test": "1.46.1",
"dotenv": "16.4.5",
"envalid": "8.0.0",
"playwright": "1.46.1",
"winston": "3.14.2"
},
"devDependencies": {
"@types/k6": "0.53.0",
"@types/node": "22.3.0",
"@typescript-eslint/eslint-plugin": "8.1.0",
"@typescript-eslint/parser": "8.1.0",
"eslint": "8.57.0",
"eslint-plugin-playwright": "1.6.2",
"husky": "9.1.4",
"prettier": "3.3.3",
"typescript": "5.5.4"
}
}