-
Notifications
You must be signed in to change notification settings - Fork 17
Expand file tree
/
Copy pathpackage.json
More file actions
63 lines (63 loc) · 1.66 KB
/
package.json
File metadata and controls
63 lines (63 loc) · 1.66 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
57
58
59
60
61
62
63
{
"name": "e2e-tests",
"private": true,
"scripts": {
"lint": "tsc --noEmit && biome check .",
"fix": "biome check --write .",
"test": "vitest",
"test:polkadot": "vitest packages/polkadot",
"test:kusama": "vitest packages/kusama",
"test:ui": "vitest --ui",
"update-env": "tsx scripts/update-env.ts",
"update-known-good": "tsx scripts/update-env.ts --update-known-good",
"postinstall": "husky",
"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",
"esbuild": "0.25.9",
"@esbuild/*": "0.25.9",
"glob": "^11.0.0",
"brace-expansion": "2.0.2",
"node-gyp": "^11.0.0"
},
"packageManager": "[email protected]",
"dependencies": {
"@e2e-test/networks": "workspace:*",
"@swc/core": "^1.13.5",
"lodash": "^4.17.21",
"ts-pattern": "^5.8.0",
"typescript": "^5.9.2",
"vitest": "^4.0.13"
},
"devDependencies": {
"@biomejs/biome": "2.3.2",
"@types/lodash": "^4.17.21",
"@types/node": "^24.9.2",
"@vitest/ui": "^4.0.14",
"dotenv": "^17.2.3",
"husky": "^9.1.7",
"lint-staged": "^16.1.6",
"tsx": "^4.21.0",
"unplugin-swc": "^1.5.9",
"vite-tsconfig-paths": "^5.1.4"
},
"lint-staged": {
"*.{js,ts}": "biome check --write --no-errors-on-unmatched"
}
}