-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
30 lines (30 loc) · 920 Bytes
/
package.json
File metadata and controls
30 lines (30 loc) · 920 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
{
"name": "my-blog",
"version": "1.0.0",
"description": "with monorepo",
"main": "index.js",
"private": true,
"repository": "git@private-github.com:SUPINKIM/react-study.git",
"author": "SUPINKIM <qorgkr26@sookmyung.ac.kr>",
"license": "MIT",
"scripts": {
"dev": "turbo run dev",
"build": "turbo run build",
"type-checking": "turbo run type-checking",
"ui:dev": "turbo run --filter=ui dev",
"ui:build": "turbo run --filter=ui build",
"ui:storybook": "turbo run --filter=ui storybook",
"trip:dev": "turbo run --filter=trip-diary dev",
"trip:build": "turbo run --filter=trip-diary build",
"lint": "turbo run lint"
},
"workspaces": [
"apps/*",
"packages/*"
],
"devDependencies": {
"turbo": "^1.10.14",
"prettier": "^3.0.3"
},
"packageManager": "pnpm@8.14.1"
}