-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 841 Bytes
/
package.json
File metadata and controls
34 lines (34 loc) · 841 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
{
"name": "codeit-resources",
"private": true,
"scripts": {
"build": "turbo build",
"clean": "turbo run clean",
"dev": "turbo dev",
"lint": "turbo lint",
"format": "prettier --write \"**/*.{ts,tsx,md}\"",
"lint:fix": "turbo run lint -- --fix",
"prepare": "husky install",
"test:web": "pnpm test --filter=web",
"test:api": "pnpm test --filter=api",
"test:ui": "pnpm test --filter=ui"
},
"devDependencies": {
"@org/prettier-config": "workspace:*",
"eslint": "^8.57.1",
"husky": "^9.1.6",
"prettier": "^3.3.3",
"prettier-plugin-tailwindcss": "^0.6.8",
"turbo": "^2.2.1",
"typescript": "^5.6.3"
},
"packageManager": "pnpm@8.15.6",
"engines": {
"node": ">=18"
},
"prettier": "@org/prettier-config",
"workspaces": [
"packages/*",
"apps/*"
]
}