-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
100 lines (100 loc) · 3.43 KB
/
package.json
File metadata and controls
100 lines (100 loc) · 3.43 KB
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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
{
"name": "bae-no",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "concurrently \"next dev\" \"yarn generate --watch\"",
"prebuild": "pnpm generate",
"build": "next build",
"build:dev": "ANALYZE=true next build",
"start": "next start",
"lint": "next lint && eslint --ignore-path .gitignore .",
"test": "jest",
"test-watch": "jest --watch",
"storybook": "start-storybook -p 6006",
"build-storybook": "build-storybook",
"test-storybook": "test-storybook",
"chromatic": "npx chromatic",
"serve:lhci": "pnpm start",
"generate": "graphql-codegen"
},
"dependencies": {
"@fxts/core": "^0.14.0",
"@r2don/react-naver-map": "^0.0.10",
"@radix-ui/react-alert-dialog": "^1.0.2",
"@radix-ui/react-avatar": "^1.0.1",
"@radix-ui/react-checkbox": "^1.0.1",
"@radix-ui/react-dialog": "^1.0.2",
"@radix-ui/react-radio-group": "^1.1.0",
"@radix-ui/react-switch": "^1.0.1",
"@radix-ui/react-tabs": "^1.0.1",
"@reastorage/react": "^1.2.1",
"@tanstack/react-query": "^4.19.0",
"@tanstack/react-query-devtools": "^4.19.1",
"@types/daum-postcode": "^2.0.0",
"@vanilla-extract/css": "^1.9.2",
"@vanilla-extract/recipes": "^0.3.0",
"@vanilla-extract/sprinkles": "^1.5.1",
"clsx": "^1.2.1",
"dayjs": "^1.11.6",
"framer-motion": "^7.6.18",
"graphql": "^16.6.0",
"graphql-tag": "^2.12.6",
"jotai": "^2.0.2",
"lottie-web": "^5.10.0",
"next": "^13.0.6",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-error-boundary": "^3.1.4",
"react-hook-form": "^7.40.0",
"react-is": "^18.2.0"
},
"devDependencies": {
"@graphql-codegen/add": "^3.2.1",
"@graphql-codegen/cli": "^2.15.0",
"@graphql-codegen/client-preset": "^1.2.1",
"@graphql-codegen/typescript": "^2.8.3",
"@graphql-codegen/typescript-operations": "^2.5.8",
"@graphql-codegen/typescript-react-query": "^4.0.6",
"@next/bundle-analyzer": "^13.0.6",
"@storybook/addon-actions": "^6.5.14",
"@storybook/addon-essentials": "^6.5.14",
"@storybook/addon-interactions": "^6.5.14",
"@storybook/addon-links": "^6.5.14",
"@storybook/builder-webpack5": "^6.5.14",
"@storybook/manager-webpack5": "^6.5.14",
"@storybook/react": "^6.5.14",
"@storybook/test-runner": "^0.9.1",
"@storybook/testing-library": "^0.0.13",
"@svgr/webpack": "^6.5.1",
"@swc/core": "^1.3.21",
"@swc/jest": "^0.2.23",
"@testing-library/jest-dom": "^5.16.5",
"@testing-library/react": "^13.4.0",
"@types/navermaps": "^3.6.1",
"@types/node": "^18.11.10",
"@types/react": "^18.0.26",
"@types/react-dom": "^18.0.9",
"@typescript-eslint/eslint-plugin": "^5.45.0",
"@typescript-eslint/parser": "^5.45.0",
"@vanilla-extract/jest-transform": "^1.0.1",
"@vanilla-extract/next-plugin": "^2.1.1",
"chromatic": "^6.11.4",
"concurrently": "^7.6.0",
"eslint": "^8.29.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-airbnb-typescript": "^17.0.0",
"eslint-config-next": "^13.0.6",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-sort-keys-fix": "^1.1.2",
"eslint-plugin-storybook": "^0.6.7",
"eslint-plugin-typescript-sort-keys": "^2.1.0",
"jest": "^29.3.1",
"jest-environment-jsdom": "^29.3.1",
"jest-transformer-svg": "^2.0.0",
"mini-css-extract-plugin": "^2.7.1",
"prettier": "^2.8.0",
"typescript": "^4.9.3"
}
}