-
Notifications
You must be signed in to change notification settings - Fork 16
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 1.07 KB
/
Copy pathpackage.json
File metadata and controls
39 lines (39 loc) · 1.07 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
{
"name": "aurora",
"private": true,
"version": "4.0.2",
"description": "Aurora - Open, Cookie-Free Website Analytics",
"author": "Renato Pozzi <renato.pozzi.dev@gmail.com>",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/askides/aurora.git"
},
"engines": {
"node": ">=20"
},
"packageManager": "pnpm@10.30.0",
"scripts": {
"prepare": "husky || true",
"dev": "pnpm --filter web dev",
"build": "pnpm -r build",
"test": "pnpm -r test",
"typecheck": "pnpm -r typecheck",
"lint": "oxlint",
"lint:fix": "oxlint --fix",
"format": "oxfmt .",
"format:check": "oxfmt --check .",
"db:generate": "pnpm --filter web db:generate",
"db:migrate": "pnpm --filter web db:migrate",
"db:push": "pnpm --filter web db:push",
"db:seed": "pnpm --filter web db:seed",
"db:studio": "pnpm --filter web db:studio"
},
"devDependencies": {
"@commitlint/cli": "^21.2.1",
"@commitlint/config-conventional": "^21.2.0",
"husky": "^9.1.7",
"oxfmt": "^0.62.0",
"oxlint": "^1.77.0"
}
}