-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathpackage.json
53 lines (53 loc) · 1.33 KB
/
package.json
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
{
"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": "[email protected]",
"dependencies": {
"@e2e-test/networks": "workspace:*",
"@swc/core": "^1.10.12",
"lodash": "^4.17.21",
"typescript": "^5.6.3",
"vitest": "^3.0.4"
},
"devDependencies": {
"@biomejs/biome": "1.9.4",
"@types/lodash": "^4.17.13",
"@types/node": "^22.13.0",
"@vitest/ui": "^2.1.8",
"dotenv": "^16.4.5",
"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"
}
}