-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
76 lines (76 loc) ยท 2.26 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
64
65
66
67
68
69
70
71
72
73
74
75
76
{
"name": "depromeet-2team-web",
"version": "0.1.0",
"private": true,
"scripts": {
"prepare": "panda codegen",
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"format:fix": "prettier --write --ignore-path .gitignore .",
"postinstall": "husky install",
"storybook": "storybook dev -p 6006",
"build-storybook": "storybook build"
},
"dependencies": {
"@next/third-parties": "^14.2.15",
"@tanstack/react-query": "^5.45.1",
"@tanstack/react-query-devtools": "^5.45.1",
"@types/lodash": "^4.17.7",
"@types/react-transition-group": "^4.4.10",
"antd": "^5.19.4",
"dayjs": "^1.11.12",
"framer-motion": "^11.3.2",
"jotai": "^2.9.0",
"lodash": "^4.17.21",
"lottie-react": "^2.4.0",
"next": "14.2.4",
"react": "^18",
"react-cookie": "^7.2.0",
"react-dom": "^18",
"react-error-boundary": "^4.0.13",
"react-hook-form": "^7.52.1",
"react-image-file-resizer": "^0.4.8",
"react-intersection-observer": "^9.13.0",
"react-mobile-picker": "^1.0.1",
"react-transition-group": "^4.4.5",
"react-virtuoso": "^4.10.1"
},
"devDependencies": {
"@chromatic-com/storybook": "^1.6.1",
"@commitlint/cli": "^19.3.0",
"@commitlint/config-conventional": "^19.2.2",
"@pandacss/dev": "^0.41.0",
"@storybook/addon-essentials": "^8.2.1",
"@storybook/addon-interactions": "^8.2.1",
"@storybook/addon-links": "^8.2.1",
"@storybook/addon-onboarding": "^8.2.1",
"@storybook/blocks": "^8.2.1",
"@storybook/nextjs": "^8.2.1",
"@storybook/react": "^8.2.1",
"@storybook/test": "^8.2.1",
"@types/node": "^20",
"@types/react": "^18",
"@types/react-dom": "^18",
"@typescript-eslint/eslint-plugin": "^7.13.1",
"@typescript-eslint/parser": "^7.13.1",
"chromatic": "^11.5.5",
"eslint": "^8.57.0",
"eslint-config-next": "14.2.4",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.1.3",
"eslint-plugin-simple-import-sort": "^12.1.0",
"eslint-plugin-storybook": "^0.8.0",
"husky": "^8.0.3",
"lint-staged": "^15.2.7",
"prettier": "^3.3.2",
"storybook": "^8.2.1",
"typescript": "^5"
},
"lint-staged": {
"*.{ts,tsx}": [
"next lint"
]
}
}