-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 1.64 KB
/
Copy pathpackage.json
File metadata and controls
47 lines (47 loc) · 1.64 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
{
"name": "ordre",
"version": "0.1.0",
"devDependencies": {
"@commitlint/cli": "^21.2.1",
"@commitlint/config-conventional": "^21.2.0",
"husky": "^9.1.7",
"lint-staged": "^17.3.0",
"playwright": "^1.62.1",
"portless": "^0.15.5",
"prettier": "^3.9.6",
"syncpack": "^15.3.2",
"turbo": "^2.10.8",
"typescript": "^6.0.3"
},
"engines": {
"node": ">=24"
},
"packageManager": "pnpm@11.20.0+sha512.9a6f330a95b66446ea088faf1521405a8a01f07fde7124cc9958dfed52d4bb436737e65b08f85f37b46fcba375092558ac51262b816844b22f63406ed166bfee",
"private": true,
"scripts": {
"api:dev": "turbo run api:dev",
"api:docs:generate": "turbo run api:docs:generate",
"api:start": "turbo run api:start",
"build": "turbo run build",
"check-types": "turbo run check-types",
"db:generate": "pnpm --filter @ordre/db db:generate",
"db:migrate": "pnpm --filter @ordre/db db:migrate",
"db:push": "pnpm --filter @ordre/db db:push",
"db:seed": "pnpm --filter @ordre/db db:seed",
"db:studio": "pnpm --filter @ordre/db db:studio",
"dev": "turbo run dev",
"docs:dev": "turbo run docs:dev",
"docs:start": "turbo run docs:start",
"format": "turbo run format",
"format:check": "turbo run format:check",
"lint": "turbo run lint",
"packages:fix": "syncpack fix && syncpack format",
"packages:lint": "syncpack lint && syncpack format --check",
"prepare": "husky",
"storybook": "turbo run storybook",
"storybook:build": "turbo run storybook:build",
"test:unit": "turbo run test:unit",
"test:unit:ci": "turbo run test:unit:ci",
"test:unit:ui": "turbo run test:unit:ui"
}
}