generated from niiknow/vue-wp-plugin-starter
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
97 lines (97 loc) · 3.18 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
{
"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"
},
"browserslist": [
"> 1%",
"last 2 versions",
"ie >= 11"
],
"devDependencies": {
"@babel/eslint-parser": "^7.17.0",
"@popperjs/core": "^2.11.5",
"@tailwindcss/forms": "^0.5.0",
"@tailwindcss/typography": "^0.5.2",
"@types/jest": "^27.4.1",
"@types/lodash": "^4.14.182",
"@variantjs/core": "^0.0.89",
"@variantjs/vue": "^0.0.22",
"@vue/cli-plugin-unit-jest": "^5.0.4",
"@vue/compiler-sfc": "^3.2.33",
"@vue/test-utils": "^2.0.0-rc.20",
"@vue/vue3-jest": "^27.0.0-alpha.4",
"archiver": "^5.3.1",
"autoprefixer": "^10.4.4",
"axios": "^0.26.1",
"body-scroll-lock": "^4.0.0-beta.0",
"browser-sync": "^2.27.9",
"browser-sync-webpack-plugin": "^2.3.0",
"core-js": "^3.22.0",
"css-loader": "^6.7.1",
"datatables.net-bs5": "^1.11.5",
"datatables.net-buttons-bs5": "^2.2.2",
"datatables.net-responsive": "^2.2.9",
"datatables.net-responsive-bs5": "^2.2.9",
"datatables.net-select-bs5": "^1.3.4",
"eslint": "^8.13.0",
"eslint-config-prettier": "^8.5.0",
"eslint-friendly-formatter": "^4.0.1",
"eslint-plugin-vue": "^8.6.0",
"jest": "27.5.1",
"jsdom": "^19.0.0",
"laravel-mix": "^6.0.43",
"laravel-mix-tailwind": "^0.1.2",
"lodash": "^4.17.21",
"node-wp-i18n": "^1.2.6",
"pdfjs-dist": "^2.13.216",
"postcss": "^8.4.12",
"postcss-import": "^14.1.0",
"postcss-loader": "^6.2.1",
"postcss-preset-env": "^7.4.3",
"postcss-pxtorem": "^6.0.0",
"purecss-sass": "^2.1.0",
"resolve-url-loader": "^5.0.0",
"sass": "^1.50.1",
"sass-loader": "^12.6.0",
"stylelint": "^14.7.1",
"stylelint-config-rational-order": "^0.1.2",
"stylelint-config-standard": "^25.0.0",
"stylelint-webpack-plugin": "^3.2.0",
"sweetalert2": "^11.4.8",
"tailwindcss": "^3.0.24",
"ts-jest": "27.1.4",
"ts-loader": "^9.2.8",
"ts-node": "^10.7.0",
"tsconfig-paths": "^3.14.1",
"tslint": "^6.1.3",
"typescript": "^4.6.3",
"vue": "^3.2.33",
"vue-axios": "^3.4.1",
"vue-color-input": "^1.0.6",
"vue-datatables-net": "^2.0.1",
"vue-loader": "^17.0.0",
"vue-router": "^4.0.14",
"vue3-ace-editor": "^2.2.2",
"vue3-gettext": "^2.2.3",
"vue3-scroll-spy": "^1.0.8",
"webpack": "^5.72.0"
}
}