-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
106 lines (106 loc) · 3.3 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
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
{
"name": "panda-core",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "concurrently \"next dev\" \"tailwindcss --input ./styles/globals.css --output ./styles/output.css --watch\"",
"build": "tailwindcss ./styles/globals.css --output ./styles/output.css && next build",
"postbuild": "next-sitemap",
"start": "next start",
"lint": "next lint",
"prepare": "husky install",
"storybook": "storybook dev -p 6006",
"build-storybook": "storybook build"
},
"dependencies": {
"@headlessui/react": "^1.7.7",
"@next/font": "13.0.7",
"@radix-ui/react-accordion": "^1.1.1",
"@radix-ui/react-alert-dialog": "^1.0.3",
"@radix-ui/react-avatar": "^1.0.2",
"@radix-ui/react-checkbox": "^1.0.3",
"@radix-ui/react-collapsible": "^1.0.2",
"@radix-ui/react-dropdown-menu": "^2.0.4",
"@radix-ui/react-hover-card": "^1.0.5",
"@radix-ui/react-popover": "1.0.5",
"@radix-ui/react-progress": "^1.0.2",
"@radix-ui/react-radio-group": "^1.1.2",
"@radix-ui/react-select": "^1.2.1",
"@radix-ui/react-slider": "^1.1.1",
"@radix-ui/react-switch": "^1.0.2",
"@radix-ui/react-tabs": "^1.0.3",
"@radix-ui/react-toggle-group": "^1.0.3",
"@radix-ui/react-tooltip": "^1.0.5",
"@types/node": "18.11.17",
"@types/react": "18.0.26",
"@types/react-dom": "18.0.9",
"autoprefixer": "^10.4.13",
"classnames": "^2.3.2",
"concurrently": "^8.0.1",
"eslint": "8.30.0",
"eslint-plugin-import": "^2.27.5",
"highlight.js": "^11.7.0",
"i18next": "^22.4.6",
"jotai": "^1.12.1",
"lottie-web": "^5.10.0",
"next": "^13.4.1",
"next-i18next": "^13.0.2",
"next-mdx-remote": "^4.0.0-rc.2",
"next-pwa": "^5.6.0",
"next-seo": "^6.0.0",
"postcss": "^8.4.20",
"react": "^18.2.0",
"react-content-loader": "^6.2.0",
"react-dom": "^18.2.0",
"react-i18next": "^12.1.1",
"react-icons": "^4.7.1",
"react-syntax-highlighter": "^15.5.0",
"react-toastify": "^9.1.1",
"tailwindcss": "^3.2.4",
"typescript": "4.9.4",
"zustand": "^4.1.5"
},
"devDependencies": {
"@babel/core": "^7.21.3",
"@storybook/addon-actions": "^7.0.0-rc.10",
"@storybook/addon-essentials": "^7.0.0-rc.10",
"@storybook/addon-interactions": "^7.0.0-rc.10",
"@storybook/addon-links": "^7.0.0-rc.10",
"@storybook/addon-mdx-gfm": "^7.0.0-rc.10",
"@storybook/addon-styling": "^0.3.2",
"@storybook/nextjs": "^7.0.0-rc.10",
"@storybook/react": "^7.0.0-rc.10",
"@storybook/testing-library": "^0.0.14-next.1",
"@types/node": "18.11.16",
"@types/react": "18.0.26",
"@types/react-dom": "18.0.9",
"babel-loader": "^8.3.0",
"css-loader": "^6.7.3",
"eslint": "8.29.0",
"eslint-config-next": "^13.4.1",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.2.1",
"husky": "^8.0.0",
"lint-staged": "^13.1.0",
"next-sitemap": "^3.1.52",
"postcss-loader": "^7.1.0",
"prettier": "^2.8.1",
"pretty-quick": "^3.1.3",
"storybook": "^7.0.0-rc.10",
"storybook-addon-themes": "^6.1.0",
"style-loader": "^3.3.2",
"typescript": "4.9.4",
"util": "^0.12.5"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{js,jsx,ts,tsx}": [
"prettier --write",
"eslint --fix"
]
}
}