-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.29 KB
/
package.json
File metadata and controls
49 lines (49 loc) · 1.29 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
{
"name": "scottystack",
"version": "0.0.0",
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"devDependencies": {
"@commitlint/cli": "^20.3.1",
"@commitlint/config-conventional": "^20.3.1",
"husky": "^9.1.7",
"markdownlint-cli2": "^0.20.0",
"oxfmt": "^0.41.0",
"oxlint": "~1.56.0",
"oxlint-tsgolint": "^0.17.0",
"syncpack": "^13.0.4",
"turbo": "^2.7.4",
"typescript": "^5.9.2"
},
"engines": {
"node": ">=18"
},
"packageManager": "bun@1.3.5",
"private": true,
"scripts": {
"build": "turbo run build",
"build:api": "cd apps/server && bun run build:api",
"dev": "turbo run dev",
"format": "oxfmt --check .",
"format:fix": "oxfmt .",
"lint": "oxlint .",
"lint:fix": "oxlint --fix",
"preinstall": "bunx only-allow bun",
"prepare": "husky",
"secrets:apply": "./scripts/apply.sh",
"secrets:deploy": "./scripts/deploy/secrets.sh",
"secrets:pull": "./scripts/secrets/pull.sh",
"secrets:push": "./scripts/secrets/push.sh",
"secrets:setup": "./scripts/secrets/setup.sh",
"syncpack": "syncpack lint",
"syncpack:fix": "syncpack format && syncpack fix-mismatches",
"syncpack:update": "syncpack update"
},
"workspaces": [
"apps/*",
"packages/*"
]
}