-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 1.51 KB
/
package.json
File metadata and controls
47 lines (47 loc) · 1.51 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
{
"name": "trait",
"private": true,
"version": "0.1.0",
"type": "module",
"scripts": {
"dev": "node ./scripts/dev-server.mjs",
"dev:static": "node ./scripts/dev-server.mjs",
"build": "npm run sync:agents && npm run sync:footer-sites && astro check && astro build && npm run seo:check",
"lint": "eslint .",
"preview": "astro preview",
"sync:agents": "node ./scripts/sync-agents.mjs",
"sync:agents:dev": "node ./scripts/sync-agents.mjs --allow-stale-output",
"sync:agents:update-source": "git submodule update --init --remote",
"sync:footer-sites": "node ./scripts/fetch-sites-snapshot.mjs",
"seo:check": "node ./scripts/check-seo.mjs",
"test": "vitest run",
"sync:agent-templates": "node ./scripts/generate-agent-templates.mjs"
},
"dependencies": {
"@astrojs/react": "^4.4.0",
"@fontsource-variable/inter": "^5.2.8",
"@tailwindcss/vite": "^4.2.2",
"astro": "^5.14.6",
"react": "^19.2.4",
"react-dom": "^19.2.4",
"react-markdown": "^10.1.0",
"remark-gfm": "^4.0.1",
"tailwindcss": "^4.2.2"
},
"devDependencies": {
"@astrojs/check": "^0.9.8",
"@eslint/js": "^9.39.1",
"@types/node": "^24.10.1",
"@types/react": "^19.2.5",
"@types/react-dom": "^19.2.3",
"eslint": "^9.39.1",
"eslint-plugin-react-hooks": "^7.0.1",
"eslint-plugin-react-refresh": "^0.4.24",
"globals": "^16.5.0",
"jsdom": "^29.0.1",
"typescript": "~5.9.3",
"typescript-eslint": "^8.46.4",
"vite": "^8.0.2",
"vitest": "^4.1.1"
}
}