forked from minsu-zip/web-fleamarket-07
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
33 lines (33 loc) · 1000 Bytes
/
package.json
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
{
"name": "web-fleamarket-07",
"repository": "https://github.com/woowa-techcamp-2022/web-fleamarket-07.git",
"license": "MIT",
"scripts": {
"initVscode": "yarn install && yarn dlx @yarnpkg/sdks vscode",
"client": "yarn workspace @fleamarket/client",
"server": "yarn workspace @fleamarket/server",
"common": "yarn workspace @fleamarket/common",
"ss": "yarn common build && yarn server start",
"sd": "yarn common build && yarn server start:dev",
"cs": "yarn common build && yarn client start"
},
"private": true,
"workspaces": {
"packages": [
"client",
"server",
"common"
]
},
"packageManager": "[email protected]",
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^5.33.1",
"@typescript-eslint/parser": "^5.33.1",
"@yarnpkg/pnpify": "^4.0.0-rc.14",
"eslint": "^8.22.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.2.1",
"prettier": "^2.7.1",
"typescript": "^4.7.4"
}
}