-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 1019 Bytes
/
package.json
File metadata and controls
36 lines (36 loc) · 1019 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
{
"name": "focus",
"description": "편리한 독서 기록을 위한 디지털 책갈피 애플리케이션",
"author": "김인화 <inhwa.kim@kakao.com>",
"type": "module",
"workspaces": [
"client",
"server",
"shared"
],
"scripts": {
"build": "npm run build --workspaces --if-present",
"dev": "concurrently 'npm run dev --workspace @focus/client' 'npm run dev --workspace @focus/server'",
"format": "prettier --write .",
"lint": "eslint .",
"preview": "concurrently 'npm run preview -w @focus/client' 'npm run preview -w @focus/server'"
},
"dependencies": {
"zod": "^4.0.16"
},
"devDependencies": {
"@eslint/js": "^9.32.0",
"@types/node": "^24.2.0",
"concurrently": "^9.2.0",
"eslint": "^9.32.0",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-perfectionist": "^4.15.0",
"globals": "^16.3.0",
"prettier": "^3.6.2",
"typescript": "^5.9.2",
"typescript-eslint": "^8.39.0"
},
"volta": {
"node": "22.18.0"
}
}