-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 1.23 KB
/
Copy pathpackage.json
File metadata and controls
46 lines (46 loc) · 1.23 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
{
"name": "anna-ux-portfolio",
"version": "1.0.0",
"description": "This workspace includes agent skills for discovering capabilities and guiding software projects from initial design through delivery.",
"main": "index.js",
"directories": {
"doc": "docs"
},
"scripts": {
"test": "vitest run",
"dev": "next dev",
"build": "next build",
"start": "next start",
"typecheck": "tsc --noEmit",
"test:watch": "vitest",
"check:dependabot": "node scripts/check-dependabot-node-types-guard.mjs",
"verify": "npm run check:dependabot && npm test && npm run typecheck && npm run build"
},
"keywords": [],
"author": "",
"license": "ISC",
"private": true,
"engines": {
"node": ">=22 <23"
},
"dependencies": {
"next": "16.2.11",
"react": "19.2.8",
"react-dom": "19.2.8",
"zod": "4.4.3"
},
"devDependencies": {
"@testing-library/jest-dom": "7.0.0",
"@testing-library/react": "16.3.2",
"@testing-library/user-event": "14.6.1",
"@types/node": "22.20.1",
"@types/react": "19.2.17",
"@types/react-dom": "19.2.3",
"@vitejs/plugin-react": "6.0.4",
"jsdom": "29.1.1",
"typescript": "6.0.3",
"vite": "8.1.5",
"vitest": "4.1.10",
"yaml": "2.9.0"
}
}