-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
81 lines (81 loc) · 2.53 KB
/
package.json
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
{
"name": "netcs-next-tw-contentful-starter",
"version": "0.1.0",
"author": {
"name": "Paulo Gomes",
"email": "pauloamgomes@gmail.com"
},
"private": true,
"scripts": {
"dev": "pnpm run build:script && pnpm run codegen && next dev --turbo",
"build": "pnpm run build:script && pnpm run codegen && next build",
"build:script": "vite build",
"start": "NODE_NO_WARNINGS=1 next start",
"lint": "next lint --fix --dir src",
"codegen": "graphql-codegen --config codegen.ts",
"db:generate": "drizzle-kit generate:sqlite",
"db:push": "drizzle-kit push:sqlite",
"db:studio": "drizzle-kit studio",
"contentful:import": "node ./contentful/import.mjs",
"contentful:export": "node ./contentful/export.mjs"
},
"dependencies": {
"@contentful/live-preview": "^4.6.1",
"@contentful/rich-text-react-renderer": "^16.0.1",
"@contentful/rich-text-types": "^17.0.0",
"@graphql-codegen/cli": "^5.0.3",
"@graphql-codegen/client-preset": "^4.5.1",
"@graphql-codegen/typescript-graphql-request": "^6.2.0",
"@graphql-typed-document-node/core": "^3.2.0",
"@libsql/client": "^0.3.6",
"@parcel/watcher": "^2.5.0",
"@tailwindcss/forms": "^0.5.9",
"@tailwindcss/typography": "^0.5.15",
"@types/ua-parser-js": "^0.7.39",
"assert": "^2.1.0",
"clsx": "^2.1.1",
"dotenv": "^16.4.7",
"drizzle-orm": "^0.28.6",
"encoding": "^0.1.13",
"feed": "^4.2.2",
"graphql": "^16.9.0",
"graphql-request": "^6.1.0",
"isbot": "^3.8.0",
"lru-cache-ext": "^4.1.1",
"next": "^15.1.0",
"node-ipinfo": "^3.5.5",
"react": "^19.0.0",
"react-dom": "^19.0.0",
"react-medium-image-zoom": "^5.2.12",
"react-player": "^2.16.0",
"react-syntax-highlighter": "^15.6.1",
"sharp": "^0.32.6",
"ua-parser-js": "2.0.0-beta.2",
"usehooks-ts": "^2.16.0",
"zod": "^3.24.1"
},
"devDependencies": {
"@inquirer/prompts": "^3.3.2",
"@types/node": "^20.17.10",
"@types/react": "^19.0.1",
"@types/react-dom": "^19.0.2",
"@types/react-syntax-highlighter": "^15.5.13",
"autoprefixer": "^10.4.20",
"better-sqlite3": "^9.6.0",
"chalk": "^5.3.0",
"contentful-export": "^7.21.5",
"contentful-import": "9.4.54",
"daisyui": "^4.12.21",
"drizzle-kit": "^0.19.13",
"eslint": "^8.57.1",
"eslint-config-next": "15.0.0",
"eslint-plugin-simple-import-sort": "^10.0.0",
"postcss": "^8.4.49",
"tailwindcss": "^3.4.16",
"typescript": "^5.7.2",
"vite": "^4.5.5"
},
"volta": {
"node": "20.9.0"
}
}