-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 1.24 KB
/
package.json
File metadata and controls
43 lines (43 loc) · 1.24 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
{
"name": "lmring",
"version": "1.5.0",
"private": true,
"engines": {
"node": ">=24.11.1"
},
"scripts": {
"dev": "turbo run dev dev:spotlight",
"build": "turbo run build",
"start": "turbo run start",
"changeset": "changeset",
"version-packages": "changeset version",
"release": "changeset publish",
"lint": "turbo run lint",
"lint:fix": "turbo run lint:fix",
"lint:root": "biome check .",
"lint:root:fix": "biome check --write .",
"format": "turbo run format",
"format:root": "biome format --write .",
"check:types": "turbo run check:types",
"check:deps": "knip",
"test": "turbo run test",
"test:e2e": "turbo run test:e2e",
"db:generate": "turbo run db:generate",
"db:migrate": "turbo run db:migrate",
"db:studio": "turbo run db:studio",
"clean": "turbo run clean && rm -rf node_modules",
"commitlint": "commitlint --edit",
"prepare": "husky"
},
"devDependencies": {
"@biomejs/biome": "^2.4.11",
"@changesets/cli": "^2.30.0",
"@commitlint/cli": "^20.5.0",
"@commitlint/config-conventional": "^20.5.0",
"husky": "^9.1.7",
"knip": "^6.4.1",
"lint-staged": "^16.4.0",
"turbo": "^2.9.6"
},
"packageManager": "pnpm@10.28.2"
}