-
Notifications
You must be signed in to change notification settings - Fork 153
Expand file tree
/
Copy pathpackage.json
More file actions
65 lines (65 loc) · 2.33 KB
/
package.json
File metadata and controls
65 lines (65 loc) · 2.33 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
{
"name": "wp-user-frontend",
"version": "4.3.0",
"description": "A Frontend Plugin for WordPress",
"author": "Tareq Hasan",
"license": "GPL",
"private": true,
"scripts": {
"release": "grunt release",
"build": "npm run build:forms-list && npm run build:subscriptions && npm run build:frontend-subscriptions && npm run build:ai-form-builder && npm run build:account && npm run build:user-directory && npm run build:css",
"build:forms-list": "ENTRY=forms-list vite build",
"build:subscriptions": "ENTRY=subscriptions vite build",
"build:frontend-subscriptions": "ENTRY=frontend-subscriptions vite build",
"build:ai-form-builder": "ENTRY=ai-form-builder vite build",
"build:user-directory": "cd modules/user-directory && npm ci && npm run build",
"dev:user-directory": "cd modules/user-directory && npm ci && npm run dev",
"build:css": "grunt tailwind && grunt tailwind-minify",
"build:account": "ENTRY=account vite build"
},
"devDependencies": {
"@tailwindcss/forms": "0.5.7",
"@types/node": "^18.11.18",
"@vitejs/plugin-vue": "^5.0.4",
"autoprefixer": "^10.4.16",
"daisyui": "^4.12.2",
"grunt": "^1.5.3",
"grunt-contrib-clean": "~1.0.0",
"grunt-contrib-compress": "~1.3.0",
"grunt-contrib-concat": "^1.0.1",
"grunt-contrib-copy": "~1.0.0",
"grunt-contrib-imagemin": "^1.0.1",
"grunt-contrib-jshint": "^1.1.0",
"grunt-contrib-less": "^1.4.0",
"grunt-contrib-uglify": "^2.0.0",
"grunt-contrib-watch": "^1.0.0",
"grunt-notify": "^0.4.5",
"grunt-phplint": "0.0.8",
"grunt-postcss": "^0.9.0",
"grunt-shell": "^4.0.0",
"grunt-text-replace": "^0.4.0",
"grunt-wp-i18n": "^1.0.3",
"grunt-wp-readme-to-markdown": "^2.0.1",
"jshint-stylish": "^2.2.1",
"postcss": "^8.4.31",
"prettier": "^3.2.5",
"prettier-plugin-tailwindcss": "^0.5.11",
"tailwindcss": "^3.3.5",
"vitawind": "^2.3.0",
"vite": "^5.1.4",
"tailwindcss-scoped-preflight": "^3.4.12"
},
"dependencies": {
"@headlessui/vue": "^1.7.23",
"@heroicons/vue": "^2.1.1",
"@vueform/multiselect": "^2.6.8",
"@vuepic/vue-datepicker": "^8.2.0",
"@wordpress/api-fetch": "^6.49.0",
"@wordpress/i18n": "^4.52.0",
"cli": "^1.0.1",
"epic-spinners": "^2.0.0",
"pinia": "^2.1.7",
"vue": "^3.4.19",
"vue-router": "^4.3.2"
}
}