-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
81 lines (81 loc) · 2.76 KB
/
package.json
File metadata and controls
81 lines (81 loc) · 2.76 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
{
"name": "wpstorm-theme",
"version": "1.0.0",
"description": "Wpstorm Theme - A Sleek WordPress Experience Powered by Tailwind CSS",
"main": "index.js",
"scripts": {
"preview": "npm-run-all --parallel sync wpstart tailwindwatch",
"sync": "browser-sync start -p 'localhost/wpstorm' --files '**/*.php' 'build/index.js' 'build/index.css' --no-open --no-notify",
"build": "npm-run-all --sequential wpbuild tailwindbuild",
"start": "npm-run-all --parallel wpstart tailwindwatch",
"wpbuild": "wp-scripts build src/index.js assets/js/alpine.js --output-path=build",
"wpstart": "wp-scripts start src/index.js assets/js/alpine.js --output-path=build",
"tailwindbuild": "tailwindcss -i src/index.css -o build/index.css --minify",
"tailwindwatch": "tailwindcss -i src/index.css -o build/index.css --watch --minify",
"build:my-account": "wp-scripts build src/my-account/index.js --output-path=build/my-account",
"start:my-account": "wp-scripts start src/my-account/index.js --output-path=build/my-account",
"plugin-zip": "wp-scripts plugin-zip"
},
"files": [
"assets",
"build",
"inc",
"languages",
"template-parts",
"woocommerce",
"*.php",
"style.css",
"screenshot.png",
"package.json",
"readme.md"
],
"keywords": [],
"author": "esradev",
"license": "ISC",
"devDependencies": {
"@tailwindcss/typography": "^0.5.10",
"@wordpress/scripts": "^27.2.0",
"browser-sync-webpack-plugin": "^2.3.0",
"npm-run-all": "^4.1.5",
"path": "^0.12.7",
"tailwindcss": "^3.4.1",
"webpack": "^5.90.2"
},
"dependencies": {
"@alpinejs/focus": "^3.14.1",
"@hookform/resolvers": "^3.9.0",
"@radix-ui/react-avatar": "^1.1.1",
"@radix-ui/react-dialog": "^1.1.2",
"@radix-ui/react-dropdown-menu": "^2.1.2",
"@radix-ui/react-icons": "^1.3.0",
"@radix-ui/react-label": "^2.1.0",
"@radix-ui/react-select": "^2.1.2",
"@radix-ui/react-separator": "^1.1.0",
"@radix-ui/react-slot": "^1.1.0",
"@radix-ui/react-switch": "^1.1.1",
"@radix-ui/react-toast": "^1.2.2",
"@radix-ui/react-tooltip": "^1.1.3",
"@tailwindcss/forms": "^0.5.4",
"@wordpress/element": "^5.16.0",
"@wordpress/i18n": "^4.39.0",
"alpinejs": "^3.14.1",
"autoprefixer": "^10.4.14",
"axios": "^1.4.0",
"browser-sync": "^2.29.3",
"class-variance-authority": "^0.7.0",
"clsx": "^2.1.1",
"lucide-react": "^0.453.0",
"postcss": "^8.4.27",
"postcss-nested": "^6.0.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-hook-form": "^7.53.1",
"react-icons": "^4.10.1",
"react-router-dom": "^6.15.0",
"tailwind-merge": "^2.5.4",
"tailwindcss-animate": "^1.0.7",
"toastify-js": "^1.12.0",
"use-immer": "^0.9.0",
"zod": "^3.23.8"
}
}