-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
41 lines (41 loc) ยท 1.25 KB
/
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
34
35
36
37
38
39
40
41
{
"name": "web-fleemarket-05",
"version": "1.0.0",
"private": true,
"license": "UNLICENSED",
"repository": "https://github.com/woowa-techcamp-2022/web-fleemarket-05.git",
"author": "sangrimlee <[email protected]>, Hyeondoonge <[email protected]>",
"workspaces": [
"client",
"server",
"migration"
],
"scripts": {
"client:dev": "yarn workspace client dev",
"client:build": "yarn workspace client build",
"server:dev": "yarn workspace server dev",
"server:build": "yarn workspace server build",
"migration:dev": "yarn workspace migration start:dev",
"migration:prod": "yarn workspace migration start:prod",
"build": "yarn client:build && yarn server:build",
"start": "yarn workspace server start",
"prepare": "husky install"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^5.0.0",
"@typescript-eslint/parser": "^5.0.0",
"eslint": "^8.0.1",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-react": "^7.30.1",
"eslint-plugin-react-hooks": "^4.6.0",
"husky": "^8.0.0",
"lint-staged": "^13.0.3",
"prettier": "^2.3.2",
"typescript": "^4.3.5",
"webpack": "^5.74.0"
},
"dependencies": {
"axios": "^0.27.2"
}
}