-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 1.13 KB
/
Copy pathpackage.json
File metadata and controls
44 lines (44 loc) · 1.13 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
{
"name": "codex-pets",
"version": "0.1.0",
"private": true,
"workspaces": [
"packages/cli"
],
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"mcp:stdio": "node packages/cli/src/index.js mcp",
"lint": "eslint .",
"test": "vitest run",
"db:migrate": "node scripts/apply-ydb-migrations.mjs",
"seed:dev": "node scripts/seed-dev-data.mjs",
"seed:dev:reset": "node scripts/seed-dev-data.mjs --reset"
},
"dependencies": {
"@gravity-ui/icons": "^2.16.0",
"@gravity-ui/uikit": "^7.26.1",
"@modelcontextprotocol/ext-apps": "^1.7.2",
"@modelcontextprotocol/sdk": "^1.29.0",
"@toon-format/toon": "^2.2.0",
"@yandex-cloud/nodejs-sdk": "^2.9.0",
"jszip": "^3.10.1",
"next": "16.0.10",
"react": "19.2.3",
"react-dom": "19.2.3",
"sharp": "^0.34.5",
"ydb-sdk": "^5.11.1",
"zod": "^4.4.3"
},
"devDependencies": {
"@types/node": "^20",
"@types/react": "^19",
"@types/react-dom": "^19",
"eslint": "^9",
"eslint-config-next": "16.0.10",
"sass": "^1.94.2",
"typescript": "^5",
"vitest": "^4.0.14"
}
}