-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
94 lines (94 loc) · 3.09 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
{
"name": "force-refresh",
"version": "2.12.1",
"description": "Force Refresh is a simple plugin that allows you to force a page refresh for users currently visiting your site.",
"url": "https://github.com/jordanleven/force-refresh",
"repository": {
"type": "git",
"url": "https://github.com/jordanleven/force-refresh.git"
},
"author": "Jordan Leven",
"license": "MIT",
"scripts": {
"prebuild": "npm run checkNodeVersion",
"build": "npx webpack --mode=production",
"build:dev": "npm run createWpReadme && npx webpack --mode=development",
"build:beta": "npm run createWpReadme && npm run build",
"predev": "npm run checkNodeVersion",
"dev": "npm run build:dev -- --watch",
"test": "jest",
"lint": "npm run lint:css && npm run lint:js",
"lint:css": "stylelint '**/*.{scss,vue}' --formatter verbose",
"lint:js": "eslint --ext .js,.vue --ignore-path .gitignore .",
"createWpReadme": "node ./.github/scripts/createWordPressReadMe.js",
"release": "./.github/scripts/release.sh",
"release:beta": "./.github/scripts/releaseBeta.sh",
"checkNodeVersion": "check-node-version --package"
},
"dependencies": {
"@fontsource/fira-code": "^5.1.0",
"@fortawesome/fontawesome-svg-core": "^6.6.0",
"@fortawesome/free-brands-svg-icons": "^6.6.0",
"@fortawesome/free-solid-svg-icons": "^6.6.0",
"@fortawesome/vue-fontawesome": "^2.0.10",
"axios": "^1.7.7",
"compare-versions": "^6.1.1",
"html-entities": "^2.5.2",
"qs": "^6.13.0",
"ramda": "^0.30.1",
"regenerator-runtime": "^0.14.1",
"sprintf-js": "^1.1.3",
"uniqid": "^5.4.0",
"vue": "^2.7.15",
"vue-i18n": "^8.27.0",
"vue-types": "^5.1.3",
"vue2-datepicker": "^3.11.1",
"vuex": "^3.6.2"
},
"devDependencies": {
"@babel/cli": "^7.25.6",
"@babel/core": "^7.26.0",
"@babel/preset-env": "^7.26.0",
"babel-loader": "^9.2.1",
"check-node-version": "^4.2.1",
"css-loader": "^7.1.2",
"dedent": "^1.5.3",
"eslint": "^8.57.1",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-import-resolver-custom-alias": "^1.3.2",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-vue": "^9.28.0",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"md-2-json": "^2.0.0",
"moment": "^2.30.1",
"postcss": "^8.4.49",
"postcss-html": "^1.7.0",
"sass": "^1.83.0",
"sass-loader": "^16.0.4",
"simple-git": "^3.27.0",
"standard-version": "^9.3.2",
"style-loader": "^4.0.0",
"stylelint": "^15.11.0",
"stylelint-config-recommended-vue": "^1.5.0",
"stylelint-config-standard": "^34.0.0",
"stylelint-config-standard-scss": "^11.1.0",
"stylelint-processor-html": "^1.0.0",
"url-loader": "^4.1.1",
"vue-eslint-parser": "^9.4.3",
"vue-loader": "^15.11.1",
"vue-template-compiler": "^2.7.16",
"webpack": "^5.97.1",
"webpack-cli": "^5.1.4",
"webpack-livereload-plugin": "^3.0.2"
},
"engines": {
"node": ">=14.0.0",
"npm": ">=6.0.0"
},
"standard-version": {
"scripts": {
"postbump": "./.github/scripts/bumpWordPressPluginVersion.sh"
}
}
}