-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
32 lines (32 loc) · 942 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
{
"name": "WEB23-HyupUp",
"version": "1.0.0",
"main": "index.js",
"repository": "https://github.com/boostcampwm-2021/WEB23-HyupUp.git",
"author": "ingong <insong1216@gmail.com>",
"license": "MIT",
"private": true,
"scripts": {
"dev:client" : "yarn workspace client dev",
"dev:server" : "yarn workspace server dev",
"build:client" : "yarn workspace client build",
"test:server": "yarn workspace server test",
"test:client" : "yarn workspace client test",
"bundle:client" : "yarn workspace client dev:bundle",
"storybook" : "yarn workspace client storybook",
"ci": "echo 'hello' && yarn install --frozen-lockfile",
"lint": "eslint ./"
},
"workspaces": [
"client",
"server"
],
"devDependencies": {
"@types/jest": "^27.0.2",
"@typescript-eslint/parser": "^5.3.0",
"eslint": "^8.1.0",
"jest": "^27.3.1",
"prettier": "^2.4.1",
"typescript": "^4.4.4"
}
}