-
Notifications
You must be signed in to change notification settings - Fork 17
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (54 loc) · 1.36 KB
/
package.json
File metadata and controls
54 lines (54 loc) · 1.36 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
{
"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"
},
"type": "module",
"workspaces": [
"packages/*"
],
"resolutions": {
"@polkadot/api": "^15.0",
"@polkadot/api-augment": "^15.0",
"@polkadot/api-derive": "^15.0",
"@polkadot/rpc-augment": "^15.0",
"@polkadot/rpc-core": "^15.0",
"@polkadot/rpc-provider": "^15.0",
"@polkadot/types": "^15.0",
"@polkadot/types-augment": "^15.0",
"@polkadot/types-codec": "^15.0",
"@polkadot/types-create": "^15.0",
"@polkadot/types-known": "^15.0"
},
"packageManager": "yarn@4.2.2",
"dependencies": {
"@e2e-test/networks": "workspace:*",
"@swc/core": "^1.11.5",
"lodash": "^4.17.21",
"ts-pattern": "^5.7.0",
"typescript": "^5.8.2",
"vitest": "^3.0.7"
},
"devDependencies": {
"@biomejs/biome": "1.9.4",
"@types/lodash": "^4.17.16",
"@types/node": "^22.13.16",
"@vitest/ui": "^3.1.1",
"dotenv": "^16.5.0",
"husky": "^9.1.7",
"lint-staged": "^15.2.10",
"tsx": "^4.19.2",
"unplugin-swc": "^1.5.1",
"vite-tsconfig-paths": "^5.1.3"
},
"lint-staged": {
"*.{js,ts}": "biome check --write --no-errors-on-unmatched"
}
}