-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
94 lines (94 loc) · 2.36 KB
/
Copy pathpackage.json
File metadata and controls
94 lines (94 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
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
{
"name": "sovereign-dccp-core",
"version": "1.0.0",
"description": "Sovereign DCCP Core - Digital Command & Control Protocol",
"main": "dist/server/index.js",
"scripts": {
"build": "tsc",
"start": "node dist/server/index.js",
"dev": "ts-node --transpile-only server/index.ts",
"dev:watch": "ts-node-dev --respawn --transpile-only server/index.ts",
"test": "jest",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage",
"lint": "eslint . --ext .ts",
"format": "prettier --write \"server/**/*.ts\"",
"dev:ui": "vite"
},
"keywords": [
"dccp",
"ai",
"sovereign",
"agent"
],
"author": "",
"license": "ISC",
"dependencies": {
"axios": "^1.13.6",
"clsx": "^2.1.1",
"cors": "^2.8.6",
"dotenv": "^17.3.1",
"express": "^5.2.1",
"framer-motion": "^12.34.3",
"js-yaml": "^4.1.0",
"lucide-react": "^0.575.0",
"playwright": "^1.58.2",
"react": "^19.2.4",
"react-dom": "^19.2.4",
"react-force-graph-2d": "^1.29.1",
"socket.io": "^4.8.3",
"socket.io-client": "^4.8.3",
"sovereign-dccp-core": "file:",
"tailwind-merge": "^3.5.0",
"ts-node": "^10.9.2",
"typescript": "^5.9.3",
"uuid": "^13.0.0",
"winston": "^3.17.0"
},
"devDependencies": {
"@types/cors": "^2.8.19",
"@types/express": "^5.0.6",
"@types/jest": "^29.5.14",
"@types/js-yaml": "^4.0.9",
"@types/node": "^25.3.0",
"@types/node-fetch": "^2.6.2",
"@types/react": "^19.2.14",
"@types/react-dom": "^19.2.3",
"@types/socket.io": "^3.0.1",
"@types/uuid": "^10.0.0",
"@vitejs/plugin-react": "^5.1.4",
"autoprefixer": "^10.4.27",
"jest": "^29.7.0",
"node-fetch": "^2.6.7",
"postcss": "^8.5.6",
"react-virtualized-auto-sizer": "^2.0.3",
"tailwindcss": "^3.4.19",
"three": "^0.183.2",
"ts-jest": "^29.2.5",
"ts-node-dev": "^2.0.0",
"typescript": "^5.9.3",
"vite": "^7.3.1"
},
"jest": {
"preset": "ts-jest",
"testEnvironment": "node",
"roots": [
"<rootDir>/server"
],
"testMatch": [
"**/__tests__/**/*.ts",
"**/?(*.)+(spec|test).ts"
],
"collectCoverageFrom": [
"server/**/*.ts",
"!server/**/*.d.ts",
"!server/**/__tests__/**"
],
"coverageDirectory": "coverage",
"moduleFileExtensions": [
"ts",
"js",
"json"
]
}
}