-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
32 lines (32 loc) · 1014 Bytes
/
package.json
File metadata and controls
32 lines (32 loc) · 1014 Bytes
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
{
"name": "web3-e2e-testing",
"version": "1.0.0",
"description": "",
"type": "module",
"main": "index.js",
"scripts": {
"format": "prettier --write .",
"format:check": "prettier --check .",
"lint": "npm run format:check && npx tsc --noEmit",
"e2e": "playwright test",
"e2e:account": "playwright test --grep @account",
"e2e:balance": "playwright test --grep @balance-check",
"e2e:connection": "playwright test --grep @connection",
"e2e:minting": "playwright test --grep @minting"
},
"keywords": [],
"author": "Marko Milenkovic",
"license": "ISC",
"devDependencies": {
"@playwright/test": "1.48.2",
"@synthetixio/synpress": "4.1.1",
"@synthetixio/synpress-tsconfig": "^0.0.14",
"@types/node": "^25.5.0",
"dotenv": "^17.3.1",
"ethers": "^5.8.0",
"monocart-reporter": "^2.10.0",
"prettier": "^3.8.1",
"prettier-plugin-organize-imports": "^4.3.0",
"typescript": "^5.9.3"
}
}