forked from leerob/site
-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
72 lines (72 loc) · 2.19 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
{
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"build:server": "tsc --project tsconfig.server.json",
"container": "docker build --file=Dockerfile --tag=michaelangeloio . --platform=linux/amd64",
"fly:deploy": "flyctl deploy --local-only --image=michaelangeloio:latest",
"deploy:site": "pnpm build && pnpm build:server && pnpm container && pnpm fly:deploy",
"pretty": "prettier --write . \"./**/*.ts\"",
"migrate:gen": "drizzle-kit generate:pg --config=drizzle/drizzle.config.ts",
"migrate:run": "tsx ./drizzle/drizzle.migrate.ts",
"lint": "next lint"
},
"engines": {
"node": "^21"
},
"dependencies": {
"@auth/core": "^0.20.0",
"@vercel/edge-config": "^0.4.1",
"@vercel/og": "^0.6.2",
"clsx": "^2.1.0",
"commander": "^11.1.0",
"contentlayer": "^0.3.4",
"dotenv": "^16.3.1",
"drizzle-orm": "^0.29.3",
"framer-motion": "^10.18.0",
"geoip-lite": "^1.4.9",
"js-cookie": "^3.0.5",
"next": "14.0.5-canary.58",
"next-auth": "^4.24.5",
"next-contentlayer": "^0.3.4",
"pino": "^8.17.2",
"popmotion": "^11.0.5",
"postgres": "^3.4.3",
"react": "18.2.0",
"react-dom": "18.2.0",
"react-globe.gl": "^2.27.1",
"react-virtuoso": "^4.6.2",
"react-wrap-balancer": "^1.1.0",
"rehype-autolink-headings": "^7.1.0",
"rehype-pretty-code": "^0.10.2",
"rehype-slug": "^6.0.0",
"remark-gfm": "^3.0.1",
"server-only": "^0.0.1",
"sharp": "^0.33.2",
"swr": "^2.2.4",
"zod": "^3.22.4"
},
"devDependencies": {
"@svgr/webpack": "^8.1.0",
"@tailwindcss/typography": "^0.5.10",
"@types/geoip-lite": "^1.4.4",
"@types/js-cookie": "^3.0.6",
"@types/node": "20.11.2",
"@types/react": "18.2.48",
"@types/react-dom": "18.2.18",
"@typescript-eslint/eslint-plugin": "^6.19.0",
"@typescript-eslint/parser": "^6.19.0",
"autoprefixer": "^10.4.16",
"drizzle-kit": "^0.20.12",
"eslint": "^8.56.0",
"eslint-config-next": "^14.0.4",
"eslint-plugin-next": "^0.0.0",
"postcss": "^8.4.33",
"prettier": "^3.2.2",
"tailwindcss": "^3.4.1",
"tsx": "^4.7.0",
"typescript": "5.3.3"
}
}