-
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
/
package.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": "^1.19.14",
"better-auth": "^1.6.5",
"better-sqlite3": "^12.9.0",
"date-fns": "^4.1.0",
"hono": "^4.12.14",
"hono-pino": "^0.10.3",
"pg": "^8.20.0",
"pino": "^10.3.1"
},
"devDependencies": {
"@commitlint/cli": "^20.5.0",
"@commitlint/config-conventional": "^20.5.0",
"@eslint/js": "^10.0.1",
"eslint": "^10.2.0",
"fallow": "^2.40.3",
"globals": "^17.5.0",
"prettier": "^3.8.3",
"sinon": "^21.1.2",
"tap": "^21.7.0"
}
}