-
Notifications
You must be signed in to change notification settings - Fork 19
Expand file tree
/
Copy pathpackage.json
More file actions
70 lines (70 loc) · 2.43 KB
/
package.json
File metadata and controls
70 lines (70 loc) · 2.43 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
64
65
66
67
68
69
70
{
"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:westend": "vitest packages/westend",
"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.5.4",
"@polkadot/api-augment": "^16.5.4",
"@polkadot/api-derive": "^16.5.4",
"@polkadot/keyring": "^14.0.1",
"@polkadot/rpc-augment": "^16.5.4",
"@polkadot/rpc-core": "^16.5.4",
"@polkadot/rpc-provider": "^16.5.4",
"@polkadot/types": "patch:@polkadot/types@npm%3A16.5.6#~/.yarn/patches/@polkadot-types-npm-16.5.6-6fe2703ed8.patch",
"@polkadot/types-augment": "^16.5.4",
"@polkadot/types-codec": "^16.5.4",
"@polkadot/types-create": "^16.5.4",
"@polkadot/types-known": "^16.5.4",
"@polkadot/util": "^14.0.1",
"@polkadot/util-crypto": "^14.0.1",
"esbuild": "0.25.9",
"@esbuild/*": "0.25.9",
"glob": "^11.0.0",
"brace-expansion": "^5.0.2",
"node-gyp": "^11.0.0",
"@polkadot/types@npm:^16.4.1": "patch:@polkadot/types@npm%3A16.5.6#~/.yarn/patches/@polkadot-types-npm-16.5.6-6fe2703ed8.patch",
"@polkadot/types@npm:^16.5.4": "patch:@polkadot/types@npm%3A16.5.6#~/.yarn/patches/@polkadot-types-npm-16.5.6-6fe2703ed8.patch",
"@polkadot/types@npm:16.5.6": "patch:@polkadot/types@npm%3A16.5.6#~/.yarn/patches/@polkadot-types-npm-16.5.6-6fe2703ed8.patch",
"@acala-network/chopsticks-utils@npm:1.4.0": "patch:@acala-network/chopsticks-utils@npm%3A1.4.0#~/.yarn/patches/@acala-network-chopsticks-utils-npm-1.4.0-abeade0cda.patch"
},
"packageManager": "yarn@4.14.1",
"dependencies": {
"@e2e-test/networks": "workspace:*",
"@swc/core": "^1.15.33",
"lodash": "^4.18.1",
"ts-pattern": "^5.9.0",
"typescript": "^6.0.3",
"vitest": "^4.1.6"
},
"devDependencies": {
"@biomejs/biome": "2.4.15",
"@types/lodash": "^4.17.24",
"@types/node": "^25.6.2",
"@vitest/ui": "^4.1.6",
"dotenv": "^17.4.2",
"husky": "^9.1.7",
"lint-staged": "^17.0.4",
"tsx": "^4.21.0",
"unplugin-swc": "^1.5.9",
"vite-tsconfig-paths": "^6.1.1"
},
"lint-staged": {
"*.{js,ts}": "biome check --write --no-errors-on-unmatched"
}
}