-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
104 lines (104 loc) · 3.14 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
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
{
"name": "inkhorn",
"description": "an open-source next-gen notetaking app for students",
"version": "0.0.0",
"private": true,
"keywords": [
"next",
"typescript",
"react",
"drizzle",
"drizzle-kit",
"panda",
"pandacss",
"vercel"
],
"license": "MIT",
"author": "Jeremy Nguyen <[email protected]> (https://jeremy.ng)",
"repository": "github:jeremy-code/inkhorn",
"homepage": "https://github.com/jeremy-code/inkhorn#readme",
"scripts": {
"prepack": "husky",
"postinstall": "panda codegen",
"dev": "next dev",
"build": "next build",
"build:analyze": "cross-env ANALYZE=true next build",
"start": "next start",
"lint": "next lint",
"lint:fix": "next lint --fix",
"format": "prettier 'src/**/*.{js,jsx,ts,tsx,json}' --write --ignore-path .gitignore",
"db:push": "drizzle-kit push:pg",
"db:generate": "drizzle-kit generate:pg",
"db:migrate": "tsx ./scripts/migrate.ts",
"db:studio": "drizzle-kit studio"
},
"dependencies": {
"@ark-ui/react": "^2.2.3",
"@auth/core": "^0.28.0",
"@auth/drizzle-adapter": "^0.8.0",
"@neondatabase/serverless": "^0.9.0",
"@next/bundle-analyzer": "^14.2.0-canary.16",
"@react-aria/datepicker": "^3.9.3",
"@react-aria/i18n": "^3.10.2",
"@react-stately/datepicker": "^3.9.2",
"@tanstack/react-virtual": "^3.1.3",
"@tiptap/core": "^2.2.4",
"@tiptap/pm": "^2.2.4",
"@tiptap/react": "^2.2.4",
"@tiptap/starter-kit": "^2.2.4",
"@vercel/analytics": "^1.2.2",
"@vercel/speed-insights": "^1.0.10",
"dotenv": "^16.4.5",
"drizzle-orm": "^0.30.1",
"drizzle-valibot": "^0.1.1",
"jsdom": "^24.0.0",
"lucide-react": "^0.356.0",
"luxon": "^3.4.4",
"next": "^14.2.0-canary.16",
"next-auth": "^5.0.0-beta.15",
"next-themes": "^0.2.1",
"pg": "^8.11.3",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"server-only": "^0.0.1",
"sqids": "^0.3.0",
"tinycolor2": "^1.6.0",
"valibot": "^0.28.1"
},
"devDependencies": {
"@ianvs/prettier-plugin-sort-imports": "^4.1.1",
"@pandacss/dev": "^0.34.3",
"@pandacss/eslint-plugin": "^0.1.1",
"@pandacss/preset-panda": "^0.34.3",
"@pandacss/types": "^0.34.3",
"@park-ui/panda-preset": "^0.36.1",
"@types/jsdom": "^21.1.6",
"@types/luxon": "^3.4.2",
"@types/node": "^20.11.26",
"@types/pg": "^8.11.2",
"@types/react": "^18.2.65",
"@types/react-dom": "^18.2.21",
"@types/tinycolor2": "^1.4.6",
"@typescript-eslint/eslint-plugin": "^7.2.0",
"@typescript-eslint/parser": "^7.2.0",
"@typescript-eslint/utils": "^7.2.0",
"cross-env": "^7.0.3",
"drizzle-kit": "^0.20.14",
"eslint": "^8.57.0",
"eslint-config-next": "14.1.3",
"eslint-plugin-drizzle": "^0.2.3",
"eslint-plugin-tsdoc": "^0.2.17",
"husky": "^9.0.11",
"lint-staged": "^15.2.2",
"postcss": "^8.4.35",
"prettier": "^3.2.5",
"tsx": "^4.7.1",
"typescript": "^5.4.2"
},
"packageManager": "[email protected]+sha256.f3cc0eda8e5560e529c7147565b30faa43b4e472d90e8634d7134a37c7f59781",
"dependenciesMeta": {
"@ianvs/[email protected]": {
"unplugged": true
}
}
}