-
Notifications
You must be signed in to change notification settings - Fork 17
Expand file tree
/
Copy pathpackage.json
More file actions
56 lines (56 loc) · 1.46 KB
/
package.json
File metadata and controls
56 lines (56 loc) · 1.46 KB
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
{
"name": "e2e-tests",
"private": true,
"scripts": {
"lint": "tsc --noEmit && biome check .",
"fix": "biome check --write .",
"test": "vitest",
"test:ui": "vitest --ui",
"update-env": "tsx scripts/update-env.ts",
"update-known-good": "tsx scripts/update-env.ts --update-known-good",
"postinstall": "husky install",
"check-proxy-coverage": "tsx scripts/check-proxy-coverage.ts"
},
"type": "module",
"workspaces": [
"packages/*"
],
"resolutions": {
"@polkadot/api": "^16.0",
"@polkadot/api-augment": "^16.0",
"@polkadot/api-derive": "^16.0",
"@polkadot/keyring": "^13.5.3",
"@polkadot/rpc-augment": "^16.0",
"@polkadot/rpc-core": "^16.0",
"@polkadot/rpc-provider": "^16.0",
"@polkadot/types": "^16.0",
"@polkadot/types-augment": "^16.0",
"@polkadot/types-codec": "^16.0",
"@polkadot/types-create": "^16.0",
"@polkadot/types-known": "^16.0"
},
"packageManager": "yarn@4.9.2",
"dependencies": {
"@e2e-test/networks": "workspace:*",
"@swc/core": "^1.11.24",
"lodash": "^4.17.21",
"ts-pattern": "^5.7.0",
"typescript": "^5.8.3",
"vitest": "^3.1.4"
},
"devDependencies": {
"@biomejs/biome": "1.9.4",
"@types/lodash": "^4.17.17",
"@types/node": "^24.0.8",
"@vitest/ui": "^3.1.3",
"dotenv": "^17.0.0",
"husky": "^9.1.7",
"lint-staged": "^16.1.0",
"tsx": "^4.19.4",
"unplugin-swc": "^1.5.4",
"vite-tsconfig-paths": "^5.1.4"
},
"lint-staged": {
"*.{js,ts}": "biome check --write --no-errors-on-unmatched"
}
}