-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (54 loc) · 1.16 KB
/
package.json
File metadata and controls
54 lines (54 loc) · 1.16 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": "tigent",
"type": "module",
"private": true,
"scripts": {
"dev": "next dev --turbopack",
"build": "next build",
"start": "next start",
"eval": "node --env-file=.env.local --import tsx eval/run.ts",
"lint": "biome lint .",
"format": "biome format --write .",
"prettier-fix": "prettier --write \"**/*.{js,ts,tsx,md,mdx,svelte}\"",
"prepare": "husky"
},
"lint-staged": {
"*": [
"prettier --ignore-unknown --write"
]
},
"devDependencies": {
"@biomejs/biome": "^2.3.12",
"@types/node": "^25.0.10",
"@types/react": "^19.2.9",
"husky": "^9.1.7",
"prettier": "^3.5.3",
"tsx": "^4.20.5"
},
"peerDependencies": {
"typescript": "^5"
},
"dependencies": {
"@tailwindcss/postcss": "^4.1.18",
"@upstash/redis": "^1.36.2",
"@vercel/analytics": "^1.6.1",
"ai": "^6.0.49",
"geist": "^1.5.1",
"iron-session": "^8.0.4",
"next": "^16.1.6",
"octokit": "^4.1.2",
"postcss": "^8.5.6",
"react": "^19.2.3",
"react-dom": "^19.2.3",
"tailwindcss": "^4.1.18",
"yaml": "^2.8.2",
"zod": "^4.3.6"
},
"prettier": {
"tabWidth": 2,
"useTabs": false,
"singleQuote": true,
"arrowParens": "avoid",
"trailingComma": "all"
}
}