-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
63 lines (63 loc) · 2.36 KB
/
Copy pathpackage.json
File metadata and controls
63 lines (63 loc) · 2.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
55
56
57
58
59
60
61
62
63
{
"name": "mainly",
"version": "0.0.0",
"private": true,
"workspaces": [
"packages/*",
"apps/*"
],
"scripts": {
"build": "npm run build:models && npm run build:designer && npm run build:explorer && npm run build:passport && npm run build:ws",
"build:models": "cd packages/models && npm run build",
"build:designer": "cd apps/designer && npm run build",
"build:explorer": "cd apps/explorer && npm run build",
"build:passport": "cd apps/passport && npm run build",
"build:ws": "cd apps/ws-gateway && cargo build",
"build:vault": "cd apps/vault && cargo build",
"dev": "concurrently \"npm run dev:designer\" \"npm run dev:explorer\" \"npm run dev:passport\" \"npm run dev:webservice\" \"npm run dev:ws\" \"npm run dev:vault\" \"npm run dev:proxy\"",
"dev:designer": "cd apps/designer && npm run dev",
"dev:explorer": "cd apps/explorer && npm run dev",
"dev:passport": "cd apps/passport && npm run dev",
"dev:webservice": "cd apps/webservice && python -m uvicorn main:app --loop asyncio --reload",
"dev:proxy": "caddy run --config Caddyfile",
"dev:ws": "cd apps/ws-gateway && cargo run",
"dev:vault": "cd apps/vault && cargo run"
},
"packageManager": "npm@9.2.0",
"devDependencies": {
"@types/node": "^18.0.3",
"@types/react": "^18.1.0",
"@types/react-dom": "^18.1.0",
"@typescript-eslint/eslint-plugin": "^5.52.0",
"@vitejs/plugin-react-swc": "^3.7.2",
"babel-plugin-react-compiler": "^19.0.0-beta-714736e-20250131",
"buffer": "^5.7.1",
"concurrently": "^7.6.0",
"eslint": "^8.32.0",
"eslint-config-standard-with-typescript": "^32.0.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-n": "^15.6.1",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^6.1.1",
"eslint-plugin-react-compiler": "^19.0.0-beta-714736e-20250131",
"postcss": "^8.4.13",
"tailwindcss": "^3.4.17",
"turbo": "^1.7.4",
"typescript": "^4.9.5",
"vite": "^6.1.0"
},
"dependencies": {
"@tanstack/react-table": "^8.11.2",
"@vanillaes/csv": "^3.0.1",
"events": "^3.3.0",
"framer-motion": "^6.3.6",
"react": "^18.1.0",
"react-compiler-runtime": "^19.0.0-beta-714736e-20250131",
"react-dom": "^18.1.0",
"react-icons": "^4.10.1",
"react-router-dom": "^6.3.0",
"socket.io-client": "^4.6.1",
"swr": "^1.3.0",
"ulid": "^2.3.0"
}
}