-
Notifications
You must be signed in to change notification settings - Fork 13
Expand file tree
/
Copy pathpackage.json
More file actions
76 lines (76 loc) · 2.66 KB
/
package.json
File metadata and controls
76 lines (76 loc) · 2.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
64
65
66
67
68
69
70
71
72
73
74
75
76
{
"name": "orbit-monorepo",
"private": true,
"scripts": {
"build": "pnpm run -r build",
"lint": "pnpm run -r lint",
"format": "pnpm run -r format",
"test": "pnpm run -r test",
"dev": "pnpm run -r dev",
"dev:marketing": "pnpm run --filter \"./apps/marketing\" dev",
"dev:wallet": "pnpm run --filter \"./apps/wallet\" dev",
"type-check": "pnpm run -r type-check",
"postinstall": "pnpm run -r postinstall && pnpm run prepare-cli",
"prepare-cli": "pnpm run --filter orbit-cli build && pnpm run --filter orbit-cli expose",
"test:e2e:deploy": "dfx start --background --clean && ./orbit --init",
"test:e2e:run": "WALLET_URL=http://werw6-ayaaa-aaaaa-774aa-cai.localhost:`dfx info webserver-port` playwright test",
"test:e2e:dev": "concurrently \"pnpm run dev:wallet\" \"WALLET_URL=http://localhost:5173?canisterId=werw6-ayaaa-aaaaa-774aa-cai playwright test --ui\"",
"test:e2e:stop": "dfx stop",
"test:e2e": "pnpm exec playwright install && pnpm run test:e2e:deploy && pnpm run test:e2e:run && pnpm run test:e2e:stop"
},
"engines": {
"node": "^20",
"pnpm": "^9",
"npm": "please use pnpm",
"yarn": "please use pnpm"
},
"packageManager": "pnpm@9.12.2",
"pnpm": {
"overrides": {
"yaml@>=2.0.0 <2.8.3": "^2.8.3",
"picomatch@>=4.0.0 <4.0.4": "^4.0.4",
"smol-toml@<1.6.1": "^1.6.1",
"flatted@<=3.4.1": "^3.4.2",
"h3@<=1.15.8": "^1.15.9",
"devalue@<=5.6.3": "^5.6.4",
"immutable@>=4.0.0-rc.1 <4.3.8": "^4.3.8",
"dompurify@>=3.1.3 <=3.3.1": "^3.3.2",
"minimatch@^3": "3.1.5",
"minimatch@^5": "5.1.9",
"minimatch@^9": "9.0.9",
"rollup@>=4.0.0 <4.59.0": "^4.59.0",
"chokidar@>=5.0.0": "4.0.3",
"form-data@<4.0.4": "^4.0.4",
"picomatch@>=2.0.0 <2.3.2": "2.3.2",
"lodash-es@<4.18.0": "^4.18.1",
"brace-expansion@^1": "1.1.13",
"brace-expansion@^2": "2.0.3",
"lodash@<4.18.0": "^4.18.1"
}
},
"devDependencies": {
"@eslint/eslintrc": "3.2.0",
"@eslint/js": "9.19.0",
"@monodon/rust": "2.0.0",
"@nx/devkit": "19.8.3",
"@nx/js": "19.8.3",
"@nx/workspace": "19.8.3",
"@playwright/test": "^1.51.1",
"@types/node": "22.7.4",
"@typescript-eslint/eslint-plugin": "8.23.0",
"@typescript-eslint/parser": "8.23.0",
"@vitest/coverage-v8": "1.6.1",
"concurrently": "8.2.2",
"eslint-config-prettier": "9.1.0",
"eslint-plugin-astro": "1.3.1",
"eslint-plugin-mdx": "3.1.5",
"eslint-plugin-vue": "9.26.0",
"globals": "15.14.0",
"nx": "19.8.3",
"prettier": "3.3.3",
"typescript": "5.6.2",
"vite": "5.4.19",
"vitest": "1.6.1",
"vue-tsc": "2.1.6"
}
}