-
Notifications
You must be signed in to change notification settings - Fork 18
Expand file tree
/
Copy pathpackage.json
More file actions
66 lines (66 loc) · 2.18 KB
/
package.json
File metadata and controls
66 lines (66 loc) · 2.18 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
{
"name": "dkg-monorepo",
"private": true,
"scripts": {
"build": "turbo run build",
"build:check": "turbo format && turbo run lint check-types build",
"check": "turbo run check-format check-types lint",
"dev": "turbo run dev --parallel --concurrency=100",
"lint": "turbo run lint",
"format": "prettier --write \"**/*.{ts,tsx,js,jsx,mjs,json,md,yml}\"",
"check-format": "prettier --check \"**/*.{ts,tsx,js,jsx,mjs,json,md,yml}\"",
"check-types": "turbo run check-types",
"test:mocha": "mocha",
"test": "npm run test:api && npm run test:integration && turbo run test --filter=@dkg/agent --force",
"test:e2e": "turbo run test:e2e --filter=@dkg/agent --force",
"test:api": "turbo run test --filter='@dkg/plugin-*' --force",
"test:integration": "cd apps/agent && npm run test:integration",
"test:ui:report": "node apps/agent/tests/e2e/utils/report-UI-Tests-config.js",
"ragas:insert:guardian": "RAGAS_SOURCE=guardian node apps/agent/tests/ragas/scripts/insert_ragas_to_db.js",
"ragas:insert:dkg_node": "RAGAS_SOURCE=dkg_node node apps/agent/tests/ragas/scripts/insert_ragas_to_db.js",
"ragas": "cd apps/agent && npm run ragas"
},
"devDependencies": {
"@changesets/cli": "^2.29.5",
"@playwright/test": "^1.54.2",
"@types/chai": "^5.2.2",
"@types/mocha": "^10.0.10",
"@types/node": "^22.9.0",
"@types/sinon": "^17.0.4",
"@types/supertest": "^6.0.3",
"chai": "^6.0.1",
"dotenv": "^17.2.1",
"drizzle-kit": "^0.31.4",
"eslint": "^9.29.0",
"mocha": "^11.7.1",
"mochawesome": "^7.1.3",
"prettier": "^3.5.3",
"sinon": "^21.0.0",
"supertest": "^7.1.4",
"test-results-reporter": "^1.1.6",
"tsup": "^8.5.0",
"tsx": "^4.20.5",
"turbo": "^2.5.5",
"typescript": "^5.8.3"
},
"engines": {
"node": ">=22"
},
"packageManager": "[email protected]",
"workspaces": [
"apps/*",
"packages/*",
"apps/agent/tests/integration"
],
"dependencies": {
"dkg.js": "^8.2.4",
"mysql2": "^3.15.3"
},
"overrides": {
"@types/express": "^5.0.3"
},
"optionalDependencies": {
"@node-rs/argon2-linux-x64-gnu": "^1.7.0",
"@rollup/rollup-linux-x64-gnu": "^4.52.5"
}
}