-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 1.04 KB
/
Copy pathpackage.json
File metadata and controls
38 lines (38 loc) · 1.04 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
{
"name": "auth-auth",
"type": "module",
"scripts": {
"dev": "node --watch src/index.js",
"db:generate": "npx @better-auth/cli generate --yes",
"db:migrate": "npx @better-auth/cli migrate --yes",
"fallow": "fallow",
"prettier:check": "prettier --check '**/*.{js,css,md,yml}'",
"prettier:write": "prettier --write '**/*.{js,css,md,yml}'",
"lint": "eslint .",
"start": "node src/index.js",
"test": "tap",
"test:watch": "tap --watch",
"test:coverage": "tap --coverage-report=html"
},
"dependencies": {
"@hono/node-server": "^2.0.4",
"better-auth": "^1.6.11",
"better-sqlite3": "^12.10.0",
"date-fns": "^4.3.0",
"hono": "^4.12.23",
"hono-pino": "^0.10.3",
"pg": "^8.21.0",
"pino": "^10.3.1"
},
"devDependencies": {
"@commitlint/cli": "^21.0.2",
"@commitlint/config-conventional": "^21.0.2",
"@eslint/js": "^10.0.1",
"eslint": "^10.4.0",
"fallow": "^2.83.0",
"globals": "^17.6.0",
"prettier": "^3.8.3",
"sinon": "^21.1.2",
"tap": "^21.7.4"
}
}