-
Notifications
You must be signed in to change notification settings - Fork 65
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 1.41 KB
/
package.json
File metadata and controls
41 lines (41 loc) · 1.41 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
{
"name": "the-dev-squad",
"version": "0.4.3",
"private": false,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "eslint",
"test:runner": "node --experimental-strip-types scripts/test-runner.mjs",
"test:hook": "node scripts/test-hook-contract.mjs",
"test:signals": "node --experimental-strip-types scripts/test-structured-output-parser.mjs",
"test:runtime": "node --experimental-strip-types scripts/test-pipeline-runtime.mjs",
"test:planning": "node --experimental-strip-types scripts/test-pipeline-planning.mjs",
"test:supervisor": "node --experimental-strip-types scripts/test-supervisor-snapshot.mjs",
"test:supervisor-concept": "node --experimental-strip-types scripts/test-supervisor-concept.mjs",
"test:supervisor-intents": "node --experimental-strip-types scripts/test-supervisor-intents.mjs"
},
"dependencies": {
"clsx": "^2.1.1",
"framer-motion": "^12.36.0",
"lucide-react": "^0.577.0",
"next": "16.1.6",
"react": "19.2.3",
"react-dom": "19.2.3",
"react-markdown": "^10.1.0",
"recharts": "^3.8.0",
"remark-breaks": "^4.0.0"
},
"devDependencies": {
"@tailwindcss/postcss": "^4",
"@types/node": "^20",
"@types/react": "^19",
"@types/react-dom": "^19",
"eslint": "^9",
"eslint-config-next": "16.1.6",
"sharp": "^0.34.5",
"tailwindcss": "^4",
"typescript": "^5"
}
}