-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
executable file
·75 lines (75 loc) · 2.24 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
{
"name": "notes",
"version": "0.1.0",
"private": true,
"scripts": {
"export": "next export",
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"prebuild": "contentlayer build",
"generate": "node --experimental-json-modules scripts/xor/index.mjs && cargo run scripts/xor && rm wasm/xor/pkg/.gitignore",
"meta": "node scripts/meta.mjs",
"_prepare": "npm run meta && npm run generate",
"db:migrate": "npx prisma migrate dev --name post-entity --create-only && npx prisma generate",
"db:push": "npx prisma db push"
},
"dependencies": {
"@hookform/resolvers": "^3.3.1",
"@mdx-js/loader": "^2.3.0",
"@mdx-js/react": "^2.3.0",
"@next/bundle-analyzer": "^13.5.2",
"@next/mdx": "^13.4.12",
"@prisma/client": "^5.3.1",
"@stitches/react": "^1.2.8",
"@tanstack/react-query": "^4.35.7",
"@trpc/client": "^10.38.4",
"@trpc/next": "^10.38.4",
"@trpc/react": "^9.27.4",
"@trpc/server": "^10.38.4",
"@types/mdx": "^2.0.5",
"@types/node": "20.4.2",
"@types/nodemailer": "^6.4.11",
"@types/react": "18.2.15",
"@types/react-dom": "18.2.7",
"@types/uuid": "^9.0.5",
"@vercel/analytics": "^1.0.1",
"argon2": "^0.31.1",
"contentlayer": "^0.3.4",
"date-fns": "^2.30.0",
"eslint": "8.45.0",
"eslint-config-next": "13.4.11",
"focus-trap-react": "^10.2.1",
"framer-motion": "^10.16.4",
"globby": "^13.2.2",
"next": "^13.5.4",
"next-auth": "^4.22.1",
"next-contentlayer": "^0.3.4",
"normalize.css": "^8.0.1",
"prettier": "^3.0.3",
"react": "18.2.0",
"react-dom": "18.2.0",
"react-hook-form": "^7.46.2",
"react-hotkeys-hook": "^4.4.1",
"react-query": "^3.39.3",
"rehype-accessible-emojis": "^0.3.2",
"rehype-autolink-headings": "^7.0.0",
"rehype-code-titles": "^1.2.0",
"rehype-pretty-code": "^0.10.1",
"rehype-prism-plus": "^1.6.3",
"rehype-slug": "^6.0.0",
"remark": "^15.0.1",
"remark-gfm": "^3.0.1",
"strip-markdown": "^5.0.1",
"styled-components": "^6.0.8",
"superjson": "^1.13.1",
"typescript": "5.1.6",
"uuid": "^9.0.1",
"zod": "^3.22.4"
},
"devDependencies": {
"prisma": "^5.3.1",
"sass": "^1.64.1"
}
}