-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
49 lines (49 loc) · 1.51 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
{
"name": "plugin_name",
"version": "1.0.0",
"description": "A WordPress boilerplate plugin using vue.js",
"main": "index.js",
"scripts": {
"dev": "node src/env/development_mode.js && vite",
"watch": "npm run dev",
"build": "node src/env/production_mode.js && vite build",
"production": "npm run build",
"package": "npm run build && rm -rf ../buy-me-coffee.zip && wp dist-archive ."
},
"dependencies": {
"@element-plus/icons-vue": "^2.0.9",
"@wordpress/hooks": "^3.1.1",
"chart.js": "^4.4.0",
"clipboard": "^2.0.11",
"element-plus": "^2.2.27",
"lodash": "^4.17.21",
"vue": "^3.2.39",
"vue-router": "^4.1.5"
},
"devDependencies": {
"@babel/plugin-syntax-dynamic-import": "^7.8.3",
"@babel/preset-env": "^7.14.7",
"@babel/preset-react": "^7.22.5",
"@vitejs/plugin-react": "^4.0.3",
"@vitejs/plugin-vue": "^3.1.0",
"@vue/compiler-sfc": "^3.2.39",
"babel-eslint": "^10.1.0",
"babel-plugin-component": "^1.1.1",
"babel-plugin-import": "^1.13.3",
"cross-env": "^7.0.3",
"postcss": "^8.3.5",
"resolve-url-loader": "^5.0.0",
"rollup-plugin-copy": "^3.4.0",
"react": "^18.2.0",
"sass": "^1.35.1",
"sass-loader": "^10",
"unplugin-auto-import": "^0.11.5",
"unplugin-vue-components": "^0.22.12",
"vite": "^3.2.7",
"vite-plugin-live-reload": "^3.0.2",
"vite-plugin-static-copy": "^0.16.0",
"vue-cli-plugin-tailwind": "~3.0.0",
"vue-loader": "^16.3.0",
"vue-template-compiler": "^2.6.14"
}
}