-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
89 lines (89 loc) · 3.01 KB
/
package.json
File metadata and controls
89 lines (89 loc) · 3.01 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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
{
"name": "gsd-taskmanager",
"version": "6.8.5",
"private": true,
"scripts": {
"dev": "next dev",
"clean": "rimraf .next out",
"prebuild": "rimraf .next out",
"build": "node scripts/generate-build-info.js && bash -c 'source .build-env.sh && next build 2>&1 | grep -v baseline-browser-mapping'",
"start": "next start",
"lint": "eslint .",
"test": "vitest run",
"test:watch": "vitest",
"typecheck": "tsc --noEmit",
"export": "next export",
"deploy:s3": "bash -c 'aws s3 sync out/ s3://gsd.vinny.dev/ --delete --exclude \"*.html\" --exclude \"sw.js\" --cache-control \"public,max-age=31536000,immutable\" && aws s3 sync out/ s3://gsd.vinny.dev/ --exclude \"*\" --include \"*.html\" --include \"sw.js\" --cache-control \"public,max-age=0,must-revalidate\" && aws s3 cp s3://gsd.vinny.dev/index.html s3://gsd.vinny.dev/index.html --metadata-directive REPLACE --cache-control \"no-cache,no-store,must-revalidate\" --content-type \"text/html\"'",
"deploy:cf": "aws cloudfront create-invalidation --distribution-id E1T6GDX0TQEP94 --paths '/*'",
"deploy": "bun run build && bun run deploy:s3 && bun run deploy:cf",
"deploy:dev": "bash scripts/deploy-dev.sh"
},
"dependencies": {
"@dnd-kit/core": "^6.3.1",
"@dnd-kit/sortable": "^10.0.0",
"@dnd-kit/utilities": "^3.2.2",
"@radix-ui/react-collapsible": "^1.1.12",
"@radix-ui/react-dialog": "^1.1.15",
"@radix-ui/react-dropdown-menu": "^2.1.16",
"@radix-ui/react-icons": "^1.3.2",
"@radix-ui/react-select": "^2.2.6",
"@radix-ui/react-slider": "^1.3.6",
"@radix-ui/react-switch": "^1.2.6",
"@radix-ui/react-tooltip": "^1.2.8",
"@radix-ui/react-visually-hidden": "^1.2.4",
"beautiful-mermaid": "^0.1.3",
"clsx": "^2.1.1",
"cmdk": "^1.1.1",
"date-fns": "^4.1.0",
"dexie": "^4.3.0",
"dexie-react-hooks": "^4.2.0",
"lucide-react": "^0.562.0",
"nanoid": "^5.1.6",
"next": "16.1.6",
"next-themes": "^0.4.6",
"react": "^19.2.4",
"react-dom": "^19.2.4",
"recharts": "^3.7.0",
"sonner": "^2.0.7",
"zod": "^4.3.6"
},
"devDependencies": {
"@testing-library/dom": "^10.4.1",
"@testing-library/jest-dom": "^6.9.1",
"@testing-library/react": "^16.3.2",
"@testing-library/user-event": "^14.6.1",
"@types/node": "^25.2.3",
"@types/react": "^19.2.14",
"@types/react-dom": "^19.2.3",
"@vitejs/plugin-react": "^5.1.4",
"@vitest/coverage-v8": "^4.0.18",
"autoprefixer": "^10.4.24",
"babel-plugin-react-compiler": "^1.0.0",
"baseline-browser-mapping": "^2.9.19",
"eslint": "^9.39.2",
"eslint-config-next": "16.1.6",
"eslint-plugin-react-hooks": "^7.0.1",
"fake-indexeddb": "^6.2.5",
"jsdom": "^27.4.0",
"postcss": "^8.5.6",
"rimraf": "^6.1.2",
"tailwindcss": "^3.4.19",
"typescript": "^5.9.3",
"vite": "^7.3.1",
"vitest": "^4.0.18",
"wrangler": "^4.65.0"
},
"workspaces": [
"packages/*"
],
"overrides": {
"js-yaml": ">=4.1.1",
"baseline-browser-mapping": "^2.9.11",
"vite": "^7.3.0",
"esbuild": ">=0.25.0",
"hono": ">=4.11.7",
"@isaacs/brace-expansion": ">=5.0.1",
"qs": ">=6.14.2"
},
"license": "MIT"
}