-
-
Notifications
You must be signed in to change notification settings - Fork 61
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 973 Bytes
/
package.json
File metadata and controls
37 lines (37 loc) · 973 Bytes
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
{
"name": "lucky-parking",
"private": true,
"scripts": {
"build": "turbo run build",
"build:docker:web": "docker build . --file apps/web/Dockerfile --tag lucky-parking/web",
"check-types": "turbo run check-types",
"clean": "rm -rf .turbo && turbo run clean",
"dev": "turbo run dev",
"format": "turbo run format",
"lint": "turbo run lint",
"prepare": "husky",
"test": "turbo run test"
},
"lint-staged": {
"**/*": [
"prettier --check --ignore-unknown --config ./packages/configs/src/prettier/prettier.config.mjs"
],
"**/*.{cjs,js,jsx,mjs,ts,tsx}": [
"eslint --fix-dry-run --config ./packages/configs/src/eslint/eslint.config.mjs"
],
"**/*.{cts,d.cts,d.mts,d.ts,mts,ts,tsx}": [
"node ./scripts/typecheck.mjs"
]
},
"devDependencies": {
"husky": "^9.1.7",
"lint-staged": "^16.2.7",
"prettier": "^3.8.0",
"turbo": "^2.7.2",
"typescript": "5.8.2"
},
"packageManager": "pnpm@9.0.0",
"engines": {
"node": ">=24 <25"
}
}