forked from DCNJ-Uket/Uket-FE-v2
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 1.07 KB
/
package.json
File metadata and controls
41 lines (41 loc) · 1.07 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
{
"name": "uket-fe-v2",
"private": true,
"scripts": {
"build": "turbo run build",
"build:admin": "turbo run build --filter=admin",
"build:web": "turbo run build --filter=web",
"dev": "turbo run dev",
"dev:admin": "turbo run dev --filter=admin",
"dev:web": "turbo run dev --filter=web",
"lint": "turbo run lint",
"prepare": "husky",
"format": "prettier --write \"**/*.{ts,tsx,md}\""
},
"devDependencies": {
"@commitlint/cli": "^19.3.0",
"@commitlint/config-conventional": "^19.2.2",
"@uket/eslint-config": "workspace:*",
"@uket/typescript-config": "workspace:*",
"husky": "^9.0.11",
"lint-staged": "^15.2.2",
"prettier": "^3.5.0",
"prettier-plugin-organize-imports": "^3.2.4",
"prettier-plugin-tailwindcss": "^0.5.13",
"turbo": "^2.4.2",
"typescript": "5.7.3"
},
"lint-staged": {
"*.{js,jsx,ts,tsx}": [
"prettier --write"
]
},
"packageManager": "pnpm@9.1.1",
"engines": {
"node": ">= 18"
},
"dependencies": {
"@next/third-parties": "^15.3.4",
"next": "^15.3.4"
}
}