-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
98 lines (98 loc) · 3.01 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
{
"name": "PluginFileName",
"version": "1.0.0",
"description": "A WordPress Vue.js starter plugin",
"author": "Tom Noogen",
"license": "GPLv2",
"textdomain": "PluginPrefix",
"scripts": {
"dev": "npm run development",
"development": "mix",
"watch": "mix watch",
"watch-poll": "mix watch -- --watch-options-poll=1000",
"prod": "npm run production",
"production": "mix --production",
"lint": "tslint --project ./tsconfig.json --config ./tslint.json && eslint bin/*.js src/**/*.vue && stylelint 'assets/*.css'",
"lint-fix": "tslint --project ./tsconfig.json --config ./tslint.json --fix && eslint --fix bin/*.js src/**/*.vue && stylelint --fix 'assets/*.css'",
"test": "jest",
"make-archive": "node ./bin/makearchive.js",
"make-plugin": "node ./bin/makeplugin.js",
"make-pot": "node ./bin/makepot.js && vue-gettext-extract",
"compile-vue-translation": "vue-gettext-compile"
},
"engines": {
"node": ">=18"
},
"browserslist": [
"> 1%",
"last 2 versions",
"ie >= 11"
],
"eslintIgnore": [
"**/node_modules/*",
"public/*",
"vendor/*"
],
"devDependencies": {
"@babel/eslint-parser": "^7.23.3",
"@popperjs/core": "^2.11.8",
"@tailwindcss/forms": "^0.5.7",
"@tailwindcss/typography": "^0.5.10",
"@types/jest": "^27.5.1",
"@variantjs/core": "^0.0.90",
"@variantjs/vue": "^0.0.22",
"@vue/cli-plugin-babel": "^5.0.8",
"@vue/cli-plugin-unit-jest": "^5.0.8",
"@vue/compiler-sfc": "^3.4.14",
"@vue/test-utils": "^2.4.3",
"@vue/vue3-jest": "^27.0.0",
"archiver": "^6.0.1",
"autoprefixer": "^10.4.16",
"axios": "^1.6.5",
"body-scroll-lock": "^4.0.0-beta.0",
"browser-sync": "^2.29.3",
"browser-sync-webpack-plugin": "^2.3.0",
"core-js": "^3.35.0",
"css-loader": "^6.9.0",
"eslint": "^8.56.0",
"eslint-config-prettier": "^9.1.0",
"eslint-friendly-formatter": "^4.0.1",
"eslint-plugin-vue": "^9.20.1",
"jest": "27.5.1",
"jsdom": "^23.2.0",
"laravel-mix": "^6.0.49",
"laravel-mix-tailwind": "^0.1.2",
"lodash": "^4.17.21",
"node-wp-i18n": "^1.2.7",
"postcss": "^8.4.33",
"postcss-import": "^16.0.0",
"postcss-loader": "^7.3.4",
"postcss-preset-env": "^9.3.0",
"postcss-pxtorem": "^6.0.0",
"purecss-sass": "^3.0.1",
"resolve-url-loader": "^5.0.0",
"sass": "^1.69.7",
"sass-loader": "^14.0.0",
"stylelint": "15.11.0",
"stylelint-config-rational-order": "^0.1.2",
"stylelint-config-standard": "34.0.0",
"stylelint-webpack-plugin": "^4.1.1",
"sweetalert2": "^11.10.3",
"tailwindcss": "^3.4.1",
"ts-jest": "27.1.4",
"ts-loader": "^9.5.1",
"ts-node": "^10.9.2",
"tsconfig-paths": "^4.2.0",
"tslint": "^6.1.3",
"typescript": "^4.9.5",
"vue": "^3.4.14",
"vue-axios": "^3.5.2",
"vue-color-input": "^1.0.8",
"vue-loader": "^17.4.2",
"vue-router": "^4.2.5",
"vue3-ace-editor": "^2.2.4",
"vue3-gettext": "^2.4.0",
"vue3-scroll-spy": "^1.0.8",
"webpack": "^5.89.0"
}
}