-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1.43 KB
/
package.json
File metadata and controls
48 lines (48 loc) · 1.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
{
"name": "testudo",
"private": true,
"workspaces": [
"packages/*",
"apps/*"
],
"scripts": {
"build": "yarn workspaces foreach -A run build",
"test": "yarn workspaces foreach -A run test",
"test:unit": "yarn workspace @testudo/core run test && yarn workspace @testudo/extension run test",
"test:e2e": "yarn workspace @testudo/e2e run test",
"test:e2e:headed": "yarn workspace @testudo/e2e run test:headed",
"test:e2e:ui": "yarn workspace @testudo/e2e run test:ui",
"test:e2e-docker": "yarn workspace @testudo/e2e-docker run test",
"cache:synpress": "yarn workspace @testudo/e2e-docker run cache",
"dev": "yarn workspace @testudo/extension run watch",
"dev:dapp": "yarn workspace @testudo/mock-dapp run dev",
"build:dapp": "yarn workspace @testudo/mock-dapp run build",
"lint": "biome check .",
"lint:fix": "biome check --write .",
"format": "biome format --write .",
"prepare": "husky"
},
"devDependencies": {
"@biomejs/biome": "2.3.11",
"husky": "^9.1.7",
"typescript": "^5.9.3"
},
"packageManager": "yarn@4.12.0",
"resolutions": {
"tar": ">=7.5.11",
"minimatch": ">=10.2.3",
"picomatch": ">=4.0.4",
"axios": ">=1.15.0",
"glob": ">=10.5.0",
"@isaacs/brace-expansion": ">=5.0.1",
"brace-expansion": ">=5.0.5",
"ajv": ">=8.18.0",
"yaml": ">=2.8.3",
"rollup": ">=4.59.0",
"esbuild": ">=0.25.0",
"vite": ">=7.3.2",
"ws": ">=8.18.3",
"follow-redirects": ">=1.16.0",
"tsup": ">=8.5.1"
}
}