-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 994 Bytes
/
package.json
File metadata and controls
41 lines (41 loc) · 994 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
38
39
40
41
{
"name": "web22-boostcamp",
"private": true,
"scripts": {
"build": "turbo run build",
"dev": "turbo run dev",
"lint": "turbo run lint",
"format": "prettier --write \"**/*.{ts,tsx,md}\"",
"check-types": "turbo run check-types",
"prepare": "husky"
},
"devDependencies": {
"@trivago/prettier-plugin-sort-imports": "^6.0.0",
"husky": "^9.1.7",
"lint-staged": "^16.2.7",
"prettier": "^3.7.4",
"prettier-plugin-tailwindcss": "^0.7.2",
"turbo": "^2.6.3",
"typescript": "5.9.2"
},
"packageManager": "pnpm@9.0.0",
"engines": {
"node": ">=18"
},
"lint-staged": {
"apps/fe/**/*.{ts,tsx,js,jsx}": [
"eslint --config apps/fe/eslint.config.js --fix",
"prettier --write"
],
"apps/be/**/*.ts": [
"eslint --config apps/be/eslint.config.mjs --fix",
"prettier --write"
],
"packages/**/*.{js,ts}": [
"prettier --write"
],
"**/*.{json,md}": [
"prettier --write"
]
}
}