-
-
Notifications
You must be signed in to change notification settings - Fork 45
/
package.json
104 lines (104 loc) · 2.52 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": "briefkasten",
"description": "Self-hosted Bookmarks Management Application",
"author": "ndom91 <[email protected]>",
"version": "0.9.0",
"license": "MIT",
"keywords": [
"next.js",
"prisma",
"bookmarks",
"selfhost"
],
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"clean": "rm -rf .next node_modules",
"db:push": "pnpm exec prisma db push",
"db:generate": "pnpm exec prisma generate",
"db:studio": "pnpm exec prisma studio"
},
"packageManager": "[email protected]",
"dependencies": {
"@headlessui/react": "^1.7.7",
"@next-auth/prisma-adapter": "^1.0.5",
"@prisma/client": "5.17.0",
"@sentry/nextjs": "^7.36.0",
"@supabase/supabase-js": "2.4.0",
"@tanstack/react-virtual": "3.0.0-beta.18",
"framer-motion": "^8.4.3",
"immer": "^9.0.17",
"metascraper": "^5.33.4",
"metascraper-description": "^5.33.4",
"metascraper-title": "^5.33.4",
"next": "13.1.6",
"next-auth": "4.18.8",
"nodemailer": "^6.9.0",
"react": "18.2.0",
"react-dom": "18.2.0",
"react-masonry-css": "^1.0.16",
"react-use": "^17.4.0",
"react-use-focus-trap": "1.1.7",
"sharp": "^0.31.3",
"zustand": "^4.3.2"
},
"devDependencies": {
"@tailwindcss/aspect-ratio": "^0.4.2",
"@tailwindcss/forms": "^0.5.3",
"@tailwindcss/line-clamp": "^0.4.2",
"autoprefixer": "^10.4.13",
"eslint": "8.31.0",
"eslint-config-next": "13.1.2",
"eslint-config-prettier": "^8.6.0",
"eslint-plugin-prettier": "^4.2.1",
"lint-staged": "^13.1.0",
"postcss": "^8.4.21",
"prettier": "^2.8.3",
"prettier-plugin-tailwindcss": "^0.2.1",
"prisma": "5.17.0",
"simple-git-hooks": "^2.8.1",
"simple-zustand-devtools": "^1.1.0",
"tailwindcss": "^3.2.4",
"tailwindcss-animate": "^1.0.5"
},
"eslintConfig": {
"extends": [
"eslint:recommended",
"next",
"prettier"
],
"env": {
"browser": true,
"node": true,
"es6": true
},
"plugins": [
"prettier"
],
"rules": {
"prettier/prettier": "error",
"@next/next/no-img-element": "off"
}
},
"prettier": {
"semi": false,
"singleQuote": true,
"bracketSpacing": true,
"plugins": [
"prettier-plugin-tailwindcss"
]
},
"simple-git-hooks": {
"pre-commit": "pnpm exec lint-staged"
},
"lint-staged": {
"*.{js,jsx,ts,tsx,css,json}": [
"prettier --write"
],
"*.{js,jsx}": [
"eslint --fix"
]
}
}