-
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
/
Copy pathpackage.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": "auth-auth",
"type": "module",
"engines": {
"node": ">= 24.0.0"
},
"scripts": {
"dev": "scripts/container.sh ensure && 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 .",
"hooks:install": "husky",
"start": "node src/index.js",
"pretest": "node test/helpers/container.js",
"test": "tap",
"test:watch": "tap --watch",
"test:pg:start": "scripts/container.sh start",
"test:pg:stop": "scripts/container.sh stop",
"test:pg:status": "scripts/container.sh status",
"test:coverage": "tap --coverage-report=html"
},
"dependencies": {
"@hono/node-server": "^2.0.4",
"better-auth": "^1.6.16",
"date-fns": "^4.4.0",
"hono": "^4.12.25",
"hono-pino": "^0.10.3",
"pg": "^8.21.0",
"pino": "^10.3.1"
},
"lint-staged": {
"**/*.{js,css,md,yml}": [
"prettier --write",
"eslint --fix"
]
},
"devDependencies": {
"@commitlint/cli": "^21.0.2",
"@commitlint/config-conventional": "^21.0.2",
"@eslint/js": "^10.0.1",
"eslint": "^10.4.1",
"fallow": "^2.92.1",
"globals": "^17.6.0",
"husky": "^9.1.7",
"lint-staged": "^17.0.8",
"prettier": "^3.8.4",
"sinon": "^22.0.0",
"tap": "^21.7.4"
}
}