-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
84 lines (84 loc) · 2.28 KB
/
Copy pathpackage.json
File metadata and controls
84 lines (84 loc) · 2.28 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
{
"name": "cache-workspace",
"version": "0.2.0",
"private": true,
"workspaces": [
"packages/*"
],
"repository": {
"type": "git",
"url": "git+https://github.com/tanRdev/codecache.git"
},
"homepage": "https://github.com/tanRdev/codecache",
"bugs": {
"url": "https://github.com/tanRdev/codecache/issues"
},
"engines": {
"node": ">=22"
},
"overrides": {
"dompurify": "3.4.12",
"postcss": "8.5.24",
"sharp": "0.35.3",
"undici": "7.29.0",
"vite": "8.1.5"
},
"scripts": {
"cli": "node ./bin/cache.js",
"cache": "node ./bin/cache.js",
"build:cli": "tsup --config tsup.config.ts",
"db:generate": "drizzle-kit generate",
"db:studio": "drizzle-kit studio",
"dev": "next dev",
"e2e": "playwright test",
"build": "next build",
"start": "next start --port 3000",
"lint": "eslint .",
"typecheck": "tsc --noEmit",
"test": "vitest run",
"validate": "npm run typecheck && npm run lint",
"verify": "npm run validate && npm run test && npm run build:cli && npm run build"
},
"dependencies": {
"@base-ui/react": "^1.3.0",
"@monaco-editor/react": "^4.7.0",
"@phosphor-icons/react": "^2.1.10",
"better-sqlite3": "^12.9.0",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"drizzle-orm": "^0.45.2",
"effect": "^3.21.0",
"lucide-react": "^1.0.1",
"next": "^16.2.12",
"prism-react-renderer": "^2.4.1",
"react": "19.2.4",
"react-dom": "19.2.4",
"react-markdown": "^10.1.0",
"remark-gfm": "^4.0.1",
"tailwind-merge": "^3.5.0",
"tw-animate-css": "^1.4.0"
},
"devDependencies": {
"@playwright/test": "^1.58.2",
"@tailwindcss/postcss": "^4",
"@tailwindcss/typography": "^0.5.19",
"@testing-library/jest-dom": "^6.9.1",
"@testing-library/react": "^16.3.2",
"@types/better-sqlite3": "^7.6.13",
"@types/node": "^24.12.0",
"@types/react": "^19",
"@types/react-dom": "^19",
"@vitejs/plugin-react": "^6.0.1",
"@vitest/coverage-v8": "^4.1.10",
"drizzle-kit": "^0.31.10",
"eslint": "^9",
"eslint-config-next": "^16.2.12",
"jsdom": "^29.0.1",
"tailwind-scrollbar": "^4.0.2",
"tailwindcss": "^4",
"tsup": "^8.5.1",
"tsx": "^4.23.1",
"typescript": "^5",
"vitest": "^4.1.1"
}
}