-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
73 lines (73 loc) · 2.11 KB
/
package.json
File metadata and controls
73 lines (73 loc) · 2.11 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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
{
"name": "curehht.github.io",
"private": true,
"description": "Cure HHT russian-speaking user group",
"version": "3.0.0",
"author": "Alex Baumgertner <[email protected]>",
"packageManager": "[email protected]",
"dependencies": {
"@auth/core": "^0.41.1",
"@auth/drizzle-adapter": "^1.11.1",
"@ianvs/prettier-plugin-sort-imports": "^4.7.1",
"@sentry/nextjs": "^10.42.0",
"@tinymce/tinymce-react": "^6.3.0",
"@vercel/analytics": "^1.6.1",
"@vercel/blob": "^2.3.0",
"@vercel/speed-insights": "^1.3.1",
"@neondatabase/serverless": "^0.10.0",
"dotenv": "^17.3.1",
"drizzle-orm": "^0.45.1",
"next": "^16.1.6",
"next-auth": "5.0.0-beta.30",
"pg": "^8.19.0",
"react": "^19.2.4",
"react-dom": "^19.2.4"
},
"license": "MIT",
"scripts": {
"dev": "next dev",
"dev-debug": "NODE_OPTIONS='--inspect' next dev",
"build": "next build",
"build:local": "NODE_ENV=development next build",
"start": "next start",
"lint": "next lint --fix",
"drizzle-studio": "drizzle-kit studio",
"prepare": "husky",
"lint-staged": "lint-staged --verbose",
"migration:generate": "drizzle-kit generate",
"migration:migrate": "drizzle-kit migrate",
"migration:repair-state": "ts-node --compiler-options '{\"module\":\"CommonJS\"}' scripts/repair-migration-state.ts"
},
"lint-staged": {
"*.{ts,tsx}": [
"eslint --fix",
"prettier --write"
],
"*.{json,md}": [
"prettier --write"
]
},
"repository": {
"type": "git",
"url": "https://github.com/curehht/curehht.github.io"
},
"bugs": {
"url": "https://github.com/curehht/curehht.github.io/issues"
},
"devDependencies": {
"@faker-js/faker": "^10.3.0",
"@types/node": "^25.3.3",
"@types/pg": "^8.18.0",
"@types/react": "^19.2.14",
"drizzle-kit": "^0.31.9",
"eslint": "^9.39.3",
"eslint-config-next": "^16.1.6",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-prettier": "^5.5.5",
"husky": "^9.1.7",
"lint-staged": "^16.3.1",
"prettier": "^3.8.1",
"ts-node": "^10.9.2",
"typescript": "^5.9.3"
}
}