-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
117 lines (117 loc) · 3.5 KB
/
package.json
File metadata and controls
117 lines (117 loc) · 3.5 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
{
"name": "context-engineering-workshop",
"private": true,
"version": "1.0.0",
"type": "module",
"license": "MIT",
"engines": {
"node": ">=20"
},
"author": "Dr Gareth Roberts <gareth@zmail.com>",
"repository": {
"type": "git",
"url": "https://github.com/dr-gareth-roberts/context-engineering.git"
},
"homepage": "https://github.com/dr-gareth-roberts/context-engineering",
"bugs": {
"url": "https://github.com/dr-gareth-roberts/context-engineering/issues"
},
"scripts": {
"dev": "vite --host",
"build:app": "vite build && esbuild packages/ce-web-server/index.ts --platform=node --packages=external --bundle --format=esm --outdir=dist",
"build": "pnpm run build:app",
"start": "NODE_ENV=production node dist/index.js",
"preview": "vite preview --host",
"check": "tsc --noEmit",
"check:packages": "pnpm -r check",
"check:all": "pnpm run check:packages && pnpm run check",
"test": "pnpm run check && pnpm run build:app",
"test:packages": "pnpm -r test",
"test:all": "pnpm run test && pnpm run test:packages",
"build:packages": "pnpm -r build",
"build:all": "pnpm run build:packages && pnpm run build:app",
"format": "prettier --write .",
"lint": "eslint 'packages/*/src/**/*.{ts,tsx}' 'packages/ce-web-server/**/*.ts'",
"lint:fix": "eslint 'packages/*/src/**/*.{ts,tsx}' 'packages/ce-web-server/**/*.ts' --fix",
"prepare": "husky"
},
"lint-staged": {
"*.{ts,tsx,js,jsx}": [
"prettier --write",
"eslint --fix"
],
"*.{json,yml,yaml,md,css}": [
"prettier --write"
],
"*.py": [
"ruff check --fix",
"ruff format"
]
},
"dependencies": {
"@context-engineering/core": "workspace:*",
"@context-engineering/memory": "workspace:*",
"@context-engineering/providers": "workspace:*",
"@radix-ui/react-dialog": "^1.1.15",
"@radix-ui/react-slot": "^1.2.4",
"@radix-ui/react-tooltip": "^1.2.8",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"express": "^5.2.1",
"framer-motion": "^12.34.4",
"highlight.js": "^11.11.1",
"http-proxy-middleware": "^3.0.5",
"lucide-react": "^0.576.0",
"react": "^19.2.4",
"react-dom": "^19.2.4",
"sonner": "^2.0.7",
"tailwind-merge": "^3.5.0",
"tailwindcss-animate": "^1.0.7",
"wouter": "^3.3.5",
"zod": "^4.3.6"
},
"devDependencies": {
"@builder.io/vite-plugin-jsx-loc": "^0.1.1",
"@eslint/js": "^10.0.1",
"@tailwindcss/typography": "^0.5.15",
"@tailwindcss/vite": "^4.2.2",
"@types/express": "5.0.6",
"@types/google.maps": "^3.58.1",
"@types/node": "^25.5.0",
"@types/react": "^19.2.14",
"@types/react-dom": "^19.2.3",
"@vitejs/plugin-react": "^6.0.1",
"autoprefixer": "^10.4.27",
"esbuild": "^0.27.4",
"eslint": "^10.1.0",
"husky": "^9.1.7",
"lint-staged": "^16.4.0",
"postcss": "^8.5.8",
"prettier": "^3.8.1",
"tailwindcss": "^4.2.2",
"tsx": "^4.21.0",
"tw-animate-css": "^1.4.0",
"typescript": "6.0.2",
"typescript-eslint": "^8.58.0",
"vite": "^8.0.3",
"vitest": "^4.1.2"
},
"packageManager": "pnpm@10.30.3",
"pnpm": {
"overrides": {
"tailwindcss>nanoid": "3.3.7",
"minimatch": ">=10.2.3",
"rollup": ">=4.59.0",
"flatted": ">=3.4.0",
"tar": ">=7.5.11",
"qs": ">=6.14.2",
"lodash": ">=4.17.23",
"lodash-es": ">=4.17.23",
"mdast-util-to-hast": ">=13.2.1"
},
"onlyBuiltDependencies": [
"better-sqlite3",
"esbuild"
]
}
}