-
-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
110 lines (110 loc) · 3.68 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
107
108
109
110
{
"name": "wordpress-plugin-boilerplate",
"version": "1.0.0",
"type": "module",
"scripts": {
"dev": "vite",
"dev:server": "concurrently \"vite\" \"npx @wp-now/wp-now start\"",
"build": "vite build",
"preview": "vite preview",
"format:check": "prettier --check .",
"format:fix": "prettier --write .",
"storybook": "storybook dev -p 6006",
"build-storybook": "storybook build",
"release": "npm run build && grunt release",
"rename": "grunt rename --force && npm run change-text-domain && composer dump-autoload",
"change-text-domain": "grunt change-text-domain --force",
"i18n": "wp i18n make-pot . languages/wordpress-plugin-boilerplate.pot --domain=wordpress-plugin-boilerplate --exclude='*/js/*,build'"
},
"devDependencies": {
"@ianvs/prettier-plugin-sort-imports": "^4.1.1",
"@kucrut/vite-for-wp": "^0.7.0",
"@nkzw/eslint-config": "^1.8.1",
"@storybook/addon-essentials": "^7.5.2",
"@storybook/addon-interactions": "^7.5.2",
"@storybook/addon-links": "^7.5.2",
"@storybook/addon-onboarding": "^1.0.8",
"@storybook/blocks": "^7.5.2",
"@storybook/jest": "^0.2.3",
"@storybook/react": "^7.5.2",
"@storybook/react-vite": "^7.5.2",
"@storybook/testing-library": "^0.2.2",
"@types/node": "^20.10.5",
"@types/react": "^18.2.22",
"@types/react-dom": "^18.0.6",
"@vitejs/plugin-react": "^4.1.0",
"autoprefixer": "^10.4.16",
"concurrently": "^9.0.1",
"eslint": "^8.52.0",
"eslint-plugin-storybook": "^0.6.15",
"grunt": "^1.6.1",
"grunt-checktextdomain": "^1.0.1",
"grunt-contrib-clean": "^2.0.1",
"grunt-contrib-compress": "^2.0.0",
"grunt-contrib-copy": "^1.0.0",
"grunt-move": "^2.0.0",
"grunt-wp-i18n": "^1.0.3",
"load-grunt-tasks": "^5.1.0",
"npm-run-all": "^4.1.5",
"postcss": "^8.4.31",
"prettier": "npm:wp-prettier@^3.0.3-beta-4",
"prettier-plugin-tailwindcss": "^0.5.6",
"prop-types": "^15.8.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"replace": "^1.2.2",
"rollup-plugin-external-globals": "^0.8.0",
"storybook": "^7.5.2",
"tailwindcss": "^3.3.5",
"vite": "^4.5.0",
"vite-plugin-external": "^4.0.1",
"vitest": "^0.34.6"
},
"dependencies": {
"@headlessui/react": "^1.7.17",
"@heroicons/react": "^2.0.18",
"@hookform/resolvers": "^3.3.4",
"@radix-ui/react-avatar": "^1.0.4",
"@radix-ui/react-dialog": "^1.0.5",
"@radix-ui/react-dropdown-menu": "^2.0.6",
"@radix-ui/react-icons": "^1.3.0",
"@radix-ui/react-label": "^2.0.2",
"@radix-ui/react-popover": "^1.0.7",
"@radix-ui/react-scroll-area": "^1.0.5",
"@radix-ui/react-select": "^2.0.0",
"@radix-ui/react-separator": "^1.0.3",
"@radix-ui/react-slot": "^1.0.2",
"@radix-ui/react-switch": "^1.0.3",
"@radix-ui/react-tabs": "^1.0.4",
"@radix-ui/react-toast": "^1.1.5",
"@radix-ui/react-tooltip": "^1.0.7",
"class-variance-authority": "^0.7.0",
"clsx": "^2.0.0",
"cmdk": "^0.2.1",
"date-fns": "^3.3.1",
"jotai": "^2.6.5",
"lucide-react": "^0.302.0",
"next-themes": "^0.2.1",
"react-aria-components": "^1.0.0-rc.0",
"react-day-picker": "^8.10.0",
"react-hook-form": "^7.50.1",
"react-resizable-panels": "^2.0.9",
"react-router-dom": "^6.18.0",
"recharts": "^2.12.7",
"sonner": "^1.2.4",
"tailwind-merge": "^2.2.0",
"tailwind-variants": "^0.1.18",
"tailwindcss-animate": "^1.0.7",
"tailwindcss-react-aria-components": "^1.0.0-rc.0",
"vite-svg-loader": "^5.0.1",
"zod": "^3.23.0-canary.20240222T232722"
},
"resolutions": {
"jackspeak": "2.1.1"
},
"eslintConfig": {
"extends": [
"plugin:storybook/recommended"
]
}
}