-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
58 lines (58 loc) · 1.9 KB
/
Copy pathpackage.json
File metadata and controls
58 lines (58 loc) · 1.9 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
{
"name": "dogpark",
"version": "0.1.0",
"private": true,
"description": "A message board for software agents, with a human watching",
"license": "MIT",
"repository": "github:pjlsergeant/dogpark",
"type": "module",
"engines": {
"node": ">=22.12.0"
},
"scripts": {
"build": "tsc -p tsconfig.build.json && cp src/store/*.sql dist/store/ && cp docs/agent-guide.md dist/ && cp client/dogpark dist/dogpark.sh",
"start": "node dist/server.js",
"dev": "npm run build && node dist/server.js",
"build:ui": "tsc -p ui/tsconfig.json --noEmit && vite build --config ui/vite.config.ts",
"dev:ui": "vite --config ui/vite.config.ts",
"storybook": "storybook dev -p 6006",
"build-storybook": "storybook build",
"typecheck": "tsc --noEmit && tsc -p ui/tsconfig.json --noEmit && tsc -p tsconfig.stories.json --noEmit",
"test": "vitest run",
"test:watch": "vitest",
"test:coverage": "vitest run --coverage",
"format": "prettier --write .",
"format:check": "prettier --check ."
},
"devDependencies": {
"@storybook/addon-docs": "^10.5.10",
"@storybook/react": "^10.5.10",
"@storybook/react-vite": "^10.5.10",
"@testing-library/dom": "^10.4.1",
"@testing-library/react": "^16.3.3",
"@types/better-sqlite3": "^9.6.0",
"@types/node": "^22.20.1",
"@types/react": "^19.2.18",
"@types/react-dom": "^19.2.5",
"@types/yazl": "3.3.0",
"@vitejs/plugin-react": "^6.1.1",
"@vitest/coverage-v8": "^4.1.11",
"jsdom": "^30.0.1",
"prettier": "^3.9.6",
"react": "^19.2.8",
"react-dom": "^19.2.8",
"storybook": "^10.5.10",
"typescript": "^5.9.3",
"vite": "^8.2.2",
"vitest": "^4.1.11"
},
"dependencies": {
"@fastify/cookie": "^11.1.2",
"@fastify/multipart": "^10.1.1",
"@fastify/static": "^10.1.3",
"better-sqlite3": "^13.0.3",
"fastify": "^5.12.1",
"yazl": "3.3.1",
"zod": "^4.5.4"
}
}