-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (54 loc) · 1.34 KB
/
package.json
File metadata and controls
54 lines (54 loc) · 1.34 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
{
"name": "jarvis-board",
"version": "0.1.0",
"private": true,
"scripts": {
"predev": "node scripts/check-env.mjs",
"prebuild": "node scripts/check-env.mjs",
"dev": "next dev",
"build": "next build",
"postbuild": "node scripts/sync-standalone-static.mjs",
"start": "next start",
"lint": "eslint",
"typecheck": "tsc --noEmit",
"check-env": "node scripts/check-env.mjs",
"prepare": "husky || true"
},
"lint-staged": {
"*.{ts,tsx}": [
"eslint --fix"
],
"**/*.{ts,tsx}": [
"bash -c 'tsc --noEmit'"
]
},
"dependencies": {
"@anthropic-ai/sdk": "^0.81.0",
"better-sqlite3": "^12.8.0",
"date-fns": "^4.1.0",
"highlight.js": "^11.11.1",
"isomorphic-dompurify": "^3.5.1",
"lucide-react": "^0.577.0",
"mermaid": "^11.13.0",
"nanoid": "^5.1.7",
"next": "16.2.0",
"react": "19.2.4",
"react-dom": "19.2.4",
"react-markdown": "^9.0.1",
"rehype-highlight": "^7.0.2",
"remark-gfm": "^4.0.0"
},
"devDependencies": {
"@tailwindcss/postcss": "^4",
"@types/better-sqlite3": "^7.6.13",
"@types/node": "20.19.37",
"@types/react": "19.2.14",
"@types/react-dom": "^19",
"eslint": "^9",
"eslint-config-next": "16.2.0",
"husky": "^9.1.7",
"lint-staged": "^15.5.2",
"tailwindcss": "^4",
"typescript": "^5"
}
}