-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 1.35 KB
/
package.json
File metadata and controls
52 lines (52 loc) · 1.35 KB
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
{
"name": "markdown-link",
"version": "1.0.0",
"private": true,
"description": "mdshare.link app",
"bin": {
"mdshare": "./cli/mdshare.js",
"markdown.link": "./cli/markdown.link.js"
},
"scripts": {
"dev": "next dev",
"dev:stripe": "bash ./scripts/dev-with-stripe.sh",
"build": "next build",
"start": "next start",
"lint": "next lint",
"cli:publish": "bash ./scripts/publish.sh",
"cli:install": "bash ./scripts/install.sh",
"cleanup:expired": "node ./scripts/cleanup-expired-publishes.js",
"prisma:generate": "prisma generate",
"prisma:push": "prisma db push"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"@aws-sdk/client-s3": "^3.917.0",
"@libsql/client": "^0.17.2",
"@prisma/adapter-libsql": "^7.6.0",
"@prisma/client": "^6.19.0",
"clsx": "^2.1.1",
"date-fns": "^4.1.0",
"jose": "^6.2.2",
"nanoid": "^5.1.7",
"next": "^16.2.0",
"prisma": "^6.19.0",
"react": "^19.2.4",
"react-dom": "^19.2.4",
"react-markdown": "^10.1.0",
"remark-gfm": "^4.0.1",
"resend": "^6.9.4",
"stripe": "^20.4.1",
"zod": "^4.3.6"
},
"devDependencies": {
"@types/node": "^25.5.0",
"@types/react": "^19.2.14",
"@types/react-dom": "^19.2.3",
"eslint": "^9.39.4",
"eslint-config-next": "^16.2.0",
"typescript": "^5.9.3"
}
}