-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
67 lines (67 loc) · 3.35 KB
/
package.json
File metadata and controls
67 lines (67 loc) · 3.35 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
{
"name": "forge-os-ui",
"private": true,
"version": "1.0.0",
"type": "module",
"scripts": {
"dev": "vite",
"typecheck": "tsc -b --pretty false",
"build": "npm run typecheck && vite build",
"build:offline": "npm run build",
"pages:fallback": "node scripts/sync-pages-fallback.mjs",
"verify:fallback": "node scripts/verify-pages-fallback.mjs",
"verify:domain": "node scripts/verify-domain-config.mjs",
"smoke": "node scripts/smoke.mjs",
"domain:check": "node scripts/domain-health.mjs",
"domain:watch": "node scripts/domain-watch.mjs",
"preview": "vite preview",
"build:ext": "vite build --config vite.extension.config.ts && node -e \"const {mkdirSync,cpSync}=require('fs');mkdirSync('dist-extension/extension/icons',{recursive:true});cpSync('extension/icons','dist-extension/extension/icons',{recursive:true})\"",
"build:ext:dev": "FORGEOS_EXTENSION_LOCALHOST=1 vite build --config vite.extension.config.ts && node -e \"const {mkdirSync,cpSync}=require('fs');mkdirSync('dist-extension/extension/icons',{recursive:true});cpSync('extension/icons','dist-extension/extension/icons',{recursive:true})\"",
"build:ext:firefox": "TARGET_BROWSER=firefox vite build --config vite.extension.config.ts && node -e \"const {mkdirSync,cpSync}=require('fs');mkdirSync('dist-extension/extension/icons',{recursive:true});cpSync('extension/icons','dist-extension/extension/icons',{recursive:true})\"",
"dev:ext": "FORGEOS_EXTENSION_LOCALHOST=1 vite build --config vite.extension.config.ts --watch",
"ci": "npm run verify:domain && npm run lint && npm run typecheck && npm run test:run && npm run build && npm run pages:fallback && npm run verify:fallback && npm run smoke",
"lint": "node scripts/lint-basic.mjs",
"test": "vitest",
"test:run": "vitest run",
"test:scheduler:redis": "vitest run tests/server/scheduler*.redis.integration.test.ts",
"test:perf": "vitest run tests/perf --reporter=verbose",
"load:pipeline": "node scripts/load-pipeline.mjs",
"backtest:quant": "tsx scripts/backtest-quant.ts",
"bench:tx-policy": "node scripts/benchmark-tx-builder-policy.mjs",
"test:e2e": "playwright test",
"test:e2e:headed": "playwright test --headed",
"ai:proxy": "node server/ai-proxy/index.mjs",
"scheduler:start": "node server/scheduler/index.mjs",
"tx-builder:start": "node server/tx-builder/index.mjs",
"callback-consumer:start": "node server/callback-consumer/index.mjs",
"audit-signer:start": "node server/audit-signer/index.mjs",
"audit-log:verify": "node scripts/verify-audit-log.mjs",
"local-node:start": "node server/local-node/index.mjs",
"local-node:doctor": "node scripts/local-node-doctor.mjs"
},
"dependencies": {
"@types/qrcode": "^1.5.6",
"hash-wasm": "^4.12.0",
"isomorphic-ws": "^5.0.0",
"kaspa-wasm": "^0.13.0",
"qrcode": "^1.5.4",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"recharts": "^2.12.7",
"redis": "^4.7.1"
},
"devDependencies": {
"@playwright/test": "^1.51.1",
"@types/react": "^18.3.12",
"@types/react-dom": "^18.3.1",
"@types/webextension-polyfill": "^0.12.5",
"@vitejs/plugin-react": "^4.3.3",
"jsdom": "^28.1.0",
"tsx": "^4.21.0",
"typescript": "^5.6.3",
"vite": "^5.4.10",
"vite-plugin-web-extension": "^4.5.0",
"vitest": "^3.2.4",
"webextension-polyfill": "^0.12.0"
}
}