-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
73 lines (73 loc) · 1.9 KB
/
Copy pathpackage.json
File metadata and controls
73 lines (73 loc) · 1.9 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
{
"name": "fdc-website",
"version": "1.0.0",
"description": "Fast Dog Coding portfolio site — a server-driven UI showcase built with Next.js, GraphQL, and Prisma.",
"keywords": [
"fast-dog-coding",
"nextjs",
"graphql",
"prisma",
"postgresql",
"portfolio",
"server-driven-ui",
"react"
],
"homepage": "https://fastdogcoding.com",
"bugs": {
"url": "https://github.com/Fast-Dog-Coding/website/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Fast-Dog-Coding/website.git"
},
"license": "MIT",
"author": "Grant Lindsay <info@fastdogcoding.com>",
"engines": {
"node": ">=20"
},
"scripts": {
"dev": "next dev",
"launch": "zsh scripts/dev.sh",
"build": "sh scripts/vercel-build.sh",
"db:push": "prisma db push",
"db:seed": "prisma db seed",
"postinstall": "prisma generate",
"start": "next start",
"lint": "eslint",
"test": "NODE_ENV=test vitest",
"test:run": "NODE_ENV=test vitest run"
},
"dependencies": {
"@apollo/server": "^5.5.1",
"@as-integrations/next": "^4.1.0",
"@prisma/adapter-pg": "^7.8.0",
"@prisma/client": "^7.8.0",
"@vercel/analytics": "^2.0.1",
"graphql": "^16.14.0",
"graphql-tag": "^2.12.6",
"next": "16.2.6",
"pg": "^8.21.0",
"prisma": "^7.8.0",
"react": "19.2.4",
"react-dom": "19.2.4",
"react-markdown": "^10.1.0"
},
"devDependencies": {
"@tailwindcss/postcss": "^4",
"@testing-library/dom": "^10.4.1",
"@testing-library/jest-dom": "^6.9.1",
"@testing-library/react": "^16.3.2",
"@types/node": "^20",
"@types/pg": "^8.20.0",
"@types/react": "^19",
"@types/react-dom": "^19",
"@vitejs/plugin-react": "^6.0.2",
"eslint": "^9",
"eslint-config-next": "16.2.6",
"jsdom": "^29.1.1",
"tailwindcss": "^4",
"tsx": "^4.22.3",
"typescript": "^5",
"vitest": "^4.1.8"
}
}