-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
63 lines (63 loc) · 1.74 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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
{
"name": "dudoong-front",
"packageManager": "[email protected]",
"private": true,
"workspaces": {
"packages": [
"apps/*",
"shared/*"
]
},
"scripts": {
"admin": "yarn workspace admin dev ",
"ticket": "yarn workspace ticket dev ",
"admin:build": "yarn workspace admin build",
"ticket:build": "yarn workspace ticket build",
"ticket:start": "yarn workspace ticket start",
"storybook": "yarn workspace @dudoong/ui storybook",
"prepare": "husky install"
},
"lint-staged": {
"**/*.{js,jsx,tsx}": [
"eslint --fix",
"prettier --write"
]
},
"devDependencies": {
"@types/eslint": "^8",
"@types/node": "^18.11.16",
"@types/react": "^18.0.26",
"@types/react-beautiful-dnd": "^13",
"@typescript-eslint/eslint-plugin": "latest",
"@typescript-eslint/parser": "latest",
"eslint": "^8.30.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-react": "latest",
"husky": "^8.0.0",
"lint-staged": "^13.1.0",
"next-intercept-stdout": "^1.0.1",
"prettier": "^2.8.1",
"typescript": "^4.9.4"
},
"resolutions": {
"webpack": "5",
"@storybook/core-common/webpack": "^5",
"@storybook/core-server/webpack": "^5",
"@storybook/react/webpack": "^5"
},
"dependencies": {
"@emotion/react": "^11.10.5",
"@emotion/styled": "^11.10.5",
"@next/bundle-analyzer": "^13.4.7",
"@tanstack/react-query": "^4.24.9",
"@tanstack/react-query-devtools": "^4.24.9",
"react-beautiful-dnd": "^13.1.1",
"react-drag-drop-files": "^2.3.8",
"react-hook-form": "^7.43.1",
"react-kakao-maps-sdk": "^1.1.6",
"sharp": "^0.32.1",
"use-debounce": "^9.0.3",
"vite-plugin-html-env": "^1.2.7"
}
}