-
Notifications
You must be signed in to change notification settings - Fork 18
Expand file tree
/
Copy pathpackage.json
More file actions
125 lines (125 loc) · 4.75 KB
/
package.json
File metadata and controls
125 lines (125 loc) · 4.75 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
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
{
"name": "@dkg/agent",
"main": "expo-router/entry",
"version": "0.0.1",
"scripts": {
"start": "expo start",
"android": "expo start --android",
"ios": "expo start --ios",
"web": "expo start --web",
"lint": "expo lint",
"check-types": "expo customize tsconfig.json && tsc --noEmit",
"build:server": "tsup src/server/*.ts --format esm,cjs",
"build:scripts": "tsup src/server/scripts/*.ts --format esm,cjs --out-dir dist/scripts",
"build:web": "expo export --clear -p web --output-dir dist/app",
"build:migrations": "drizzle-kit generate",
"dev:app": "expo start --web --port 8081",
"dev:server": "tsup src/server/*.ts --format esm,cjs --watch --onSuccess=\"node dist/index.js --dev\"",
"drizzle:studio": "drizzle-kit studio",
"script:setup": "node dist/scripts/setup.js",
"script:publisher": "node dist/scripts/publisher.js",
"script:createUser": "node dist/scripts/createUser.js",
"script:createToken": "node dist/scripts/createToken.js",
"test": "PLAYWRIGHT_JUNIT_OUTPUT_NAME=DKG_Node_UI_Tests.xml npx playwright test spec/testUI.spec.js --grep '@gh_actions' --reporter=list,html,junit",
"test:e2e": "PLAYWRIGHT_JUNIT_OUTPUT_NAME=DKG_Node_UI_Tests.xml npx playwright test spec/testUI.spec.js --reporter=list,html,junit",
"test:install": "npx playwright install",
"test:integration": "NODE_OPTIONS='--import tsx' mocha 'tests/integration/**/*.spec.ts' --require tests/integration/setup/global-setup.ts",
"test:ragas": "NODE_OPTIONS='--import tsx' tsx tests/ragas/evaluate.ts",
"test:ragas:results": "NODE_OPTIONS='--import tsx' tsx tests/ragas/show-results.ts",
"test:ragas:dashboard": "NODE_OPTIONS='--import tsx' tsx tests/ragas/dashboard.ts",
"ragas": "chmod +x tests/ragas/run-ragas.sh && tests/ragas/run-ragas.sh",
"postinstall": "node fix-uuid.js"
},
"dependencies": {
"@dkg/expo-forcegraph": "^0.0.0",
"@dkg/plugin-dkg-essentials": "^0.0.3",
"@dkg/plugin-dkg-publisher": "^1.0.0",
"@dkg/plugin-example": "^0.0.3",
"@dkg/plugin-oauth": "^0.0.2",
"@dkg/plugin-swagger": "^0.0.2",
"@dkg/plugins": "^0.0.2",
"@expo-google-fonts/manrope": "^0.4.1",
"@expo-google-fonts/space-grotesk": "^0.4.0",
"@expo/vector-icons": "^14.1.0",
"@langchain/anthropic": "^0.3.28",
"@langchain/core": "^0.3.66",
"@langchain/google-genai": "^0.2.18",
"@langchain/groq": "^0.2.4",
"@langchain/mistralai": "^0.2.1",
"@langchain/openai": "^0.6.3",
"@langchain/xai": "^0.1.0",
"@modelcontextprotocol/sdk": "^1.16.0",
"@node-rs/argon2": "^2.0.2",
"@react-native-async-storage/async-storage": "2.1.2",
"@react-navigation/bottom-tabs": "^7.3.10",
"@react-navigation/elements": "^2.3.8",
"@react-navigation/native": "^7.1.6",
"better-sqlite3": "^12.2.0",
"dkg.js": "^8.2.2",
"dotenv": "^16.3.1",
"drizzle-orm": "^0.44.7",
"expo": "53.0.20",
"expo-blur": "~14.1.5",
"expo-clipboard": "~7.1.5",
"expo-constants": "~17.1.7",
"expo-crypto": "~14.1.5",
"expo-document-picker": "~13.1.6",
"expo-file-system": "~18.1.11",
"expo-font": "~13.3.1",
"expo-haptics": "~14.1.4",
"expo-image": "~2.4.0",
"expo-image-picker": "~16.1.4",
"expo-linking": "~7.1.7",
"expo-router": "~5.1.4",
"expo-splash-screen": "~0.30.10",
"expo-status-bar": "~2.2.3",
"expo-symbols": "~0.4.5",
"expo-system-ui": "~5.0.10",
"expo-three": "^8.0.0",
"expo-web-browser": "~14.2.0",
"js-sha256": "^0.11.1",
"mysql2": "^3.6.5",
"nodemailer": "^7.0.6",
"prompts": "^2.4.2",
"react": "19.0.0",
"react-dom": "19.0.0",
"react-native": "0.79.5",
"react-native-fast-collapsible": "^1.1.2",
"react-native-gesture-handler": "~2.24.0",
"react-native-markdown-display": "^7.0.2",
"react-native-reanimated": "~3.17.4",
"react-native-safe-area-context": "5.4.0",
"react-native-screens": "~4.11.1",
"react-native-svg": "15.11.2",
"react-native-web": "~0.20.0",
"react-native-webview": "13.13.5",
"react-tiny-popover": "^8.1.6",
"three-spritetext": "^1.10.0",
"uuid": "^10.0.0"
},
"devDependencies": {
"@babel/core": "^7.25.2",
"@dkg/eslint-config": "*",
"@dkg/typescript-config": "*",
"@playwright/test": "^1.47.0",
"@types/better-sqlite3": "^7.6.13",
"@types/chai": "^5.2.2",
"@types/mocha": "^10.0.0",
"@types/node": "^20.0.0",
"@types/nodemailer": "^7.0.1",
"@types/prompts": "^2.4.9",
"@types/react": "~19.0.10",
"@types/supertest": "^6.0.0",
"chai": "^6.0.1",
"drizzle-kit": "^0.31.4",
"mocha": "^10.0.0",
"nyc": "^15.1.0",
"supertest": "^6.3.0",
"ts-node": "^10.9.0",
"tsup": "^8.5.0",
"tsx": "^4.0.0",
"turbo": "^2.5.5",
"typescript": "^5.0.0"
},
"private": true
}