forked from ndom91/briefkasten
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
112 lines (112 loc) · 2.69 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
105
106
107
108
109
110
111
112
{
"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": "npx prisma db push",
"db:studio": "npx prisma studio"
},
"packageManager": "[email protected]",
"dependencies": {
"@headlessui/react": "^1.7.0",
"@next-auth/prisma-adapter": "^1.0.4",
"@prisma/client": "4.3.1",
"@sentry/nextjs": "^7.12.1",
"@supabase/supabase-js": "2.0.0-rc.8",
"@tanstack/react-virtual": "3.0.0-beta.18",
"framer-motion": "^7.3.2",
"immer": "^9.0.15",
"metascraper": "^5.30.4",
"metascraper-description": "^5.30.4",
"metascraper-title": "^5.30.4",
"next": "12.3.0",
"next-auth": "4.10.3",
"nodemailer": "^6.7.8",
"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.0",
"zustand": "^4.1.1"
},
"devDependencies": {
"@commitlint/cli": "^17.1.2",
"@commitlint/config-conventional": "^17.1.0",
"@tailwindcss/aspect-ratio": "^0.4.2",
"@tailwindcss/forms": "^0.5.3",
"@tailwindcss/line-clamp": "^0.4.2",
"autoprefixer": "^10.4.8",
"eslint": "8.23.0",
"eslint-config-next": "12.3.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.2.1",
"lint-staged": "^13.0.3",
"postcss": "^8.4.16",
"prettier": "^2.7.1",
"prettier-plugin-tailwindcss": "^0.1.13",
"prisma": "4.3.1",
"simple-git-hooks": "^2.8.0",
"simple-zustand-devtools": "^1.1.0",
"tailwindcss": "^3.1.8",
"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,
"arrowSpacing": true,
"plugins": [
"prettier-plugin-tailwindcss"
]
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"simple-git-hooks": {
"commit-msg": "npx commitlint --edit",
"pre-commit": "npx lint-staged"
},
"lint-staged": {
"*.{js,jsx,ts,tsx,css,json}": [
"prettier --write"
],
"*.{js,jsx}": [
"eslint --fix"
]
}
}