-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 1.46 KB
/
package.json
File metadata and controls
53 lines (53 loc) · 1.46 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
53
{
"name": "example-with-authjs",
"scripts": {
"dev": "vinxi dev",
"build": "vinxi build",
"start": "vinxi start",
"lint": "eslint --fix \"**/*.{ts,tsx,js,jsx}\"",
"typecheck": "tsc --noEmit",
"docs:build": "pnpm exec antora antora-playbook.yml",
"db:push": "pnpm exec drizzle-kit push",
"db:studio": "pnpm exec drizzle-kit studio",
"seed": "pnpm exec tsx scripts/seed.ts"
},
"type": "module",
"devDependencies": {
"@antora/cli": "^3.1.14",
"@antora/site-generator": "^3.1.14",
"@types/node": "^24.7.0",
"@types/uuid": "^11.0.0",
"@typescript-eslint/eslint-plugin": "^7.6.0",
"@typescript-eslint/parser": "^7.6.0",
"antora-dark-theme": "^0.1.3",
"drizzle-kit": "^0.31.8",
"eslint": "^8.56.0",
"eslint-plugin-solid": "^0.14.3",
"tsx": "^4.21.0",
"typescript": "^5.6.2",
"uuid": "^13.0.0",
"vite": "^7.3.1"
},
"dependencies": {
"@asciidoctor/core": "^3.0.4",
"@auth/core": "^0.41.1",
"@auth/drizzle-adapter": "^1.11.1",
"@libsql/client": "^0.17.0",
"@solidjs/meta": "^0.29.4",
"@solidjs/router": "^0.15.1",
"@solidjs/start": "^1.1.0",
"@tailwindcss/typography": "^0.5.19",
"autoprefixer": "^10.4.19",
"drizzle-orm": "^0.45.1",
"gray-matter": "^4.0.3",
"postcss": "^8.4.40",
"solid-js": "^1.9.5",
"start-authjs": "^1.0.0",
"tailwindcss": "^3.4.7",
"vinxi": "^0.5.7",
"zod": "^3.22.4"
},
"engines": {
"node": ">=22"
}
}