-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (54 loc) · 1.39 KB
/
package.json
File metadata and controls
54 lines (54 loc) · 1.39 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": "agents-compare",
"version": "1.0.0",
"private": true,
"scripts": {
"dev": "next dev -p 3001",
"build": "next build",
"start": "next start",
"lint": "next lint",
"validate": "tsx lib/data-validator.ts",
"type-check": "tsc --noEmit",
"prebuild": "npm run validate && npm run type-check",
"prepare": "husky",
"create-features": "node scripts/create-features.js",
"create-agents": "node scripts/create-agents.js",
"update-index": "node scripts/update-index.js"
},
"dependencies": {
"@heroicons/react": "^2.2.0",
"class-variance-authority": "^0.7.0",
"clsx": "^2.0.0",
"json5": "^2.2.3",
"lucide-react": "^0.294.0",
"next": "^14.0.0",
"react": "^18.0.0",
"react-dom": "^18.0.0",
"schema-dts": "^1.1.2",
"tailwind-merge": "^2.0.0"
},
"devDependencies": {
"@types/node": "^20",
"@types/react": "^18",
"@types/react-dom": "^18",
"@typescript-eslint/eslint-plugin": "^7.10.0",
"@typescript-eslint/parser": "^7.10.0",
"autoprefixer": "^10",
"eslint": "^8.57.0",
"eslint-config-next": "^14",
"husky": "^9.0.11",
"postcss": "^8",
"tailwindcss": "^3",
"tsx": "^4.0.0",
"typescript": "^5"
},
"keywords": [
"ai",
"coding-agents",
"comparison",
"nextjs"
],
"author": "",
"license": "MIT",
"description": "Compare AI coding agents feature by feature"
}