-
Notifications
You must be signed in to change notification settings - Fork 33
/
Copy pathpackage.json
67 lines (67 loc) · 1.99 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
{
"name": "wp-help",
"title": "WP Help",
"description": "A WordPress plugin",
"version": "1.7.5",
"homepage": "",
"author": {
"name": "Mark Jaquith",
"email": "mark@jaquith.me"
},
"firstCopyright": "2011",
"license": "GPL-2.0+",
"prettier": {
"singleQuote": true,
"useTabs": true,
"trailingComma": "es5"
},
"scripts": {
"build:production": "grunt build:production",
"clean-dist": "git clean -f dist",
"make-zip": "wp dist-archive . wp-help.zip",
"package:prep": "yarn run clean-dist && yarn run build:production",
"package": "yarn run package:prep && yarn run make-zip"
},
"keywords": [],
"dependencies": {
"@babel/core": "^7.24.4",
"@babel/plugin-proposal-object-rest-spread": "^7.20.7",
"@babel/plugin-transform-class-properties": "^7.24.1",
"@babel/plugin-transform-object-rest-spread": "^7.24.1",
"@babel/preset-env": "^7.24.4",
"@babel/preset-react": "7.24.1",
"@wordpress/components": "^27.4.0",
"@wordpress/compose": "^6.33.0",
"@wordpress/data": "^9.26.0",
"@wordpress/dependency-extraction-webpack-plugin": "^5.7.0",
"@wordpress/edit-post": "^7.33.0",
"@wordpress/plugins": "^6.24.0",
"autoprefixer": "^10.4.19",
"babel-loader": "^9.1.3",
"css-loader": "^7.1.1",
"file-loader": "^6.2.0",
"grunt": "^1.6.1",
"grunt-cli": "^1.4.3",
"grunt-contrib-clean": "^2.0.1",
"grunt-contrib-compress": "^2.0.0",
"grunt-contrib-copy": "~1.0.0",
"grunt-contrib-watch": "^1.1.0",
"grunt-env": "^1.0.1",
"grunt-notify": "^0.4.5",
"grunt-phpunit": "~0.3.6",
"grunt-prettier": "^2.2.0",
"grunt-text-replace": "^0.4.0",
"grunt-webpack": "^6.0.0",
"grunt-wp-deploy": "^2.1.2",
"load-grunt-tasks": "^5.1.0",
"postcss": "^8.4.38",
"postcss-loader": "^8.1.1",
"react": "18.2.0",
"react-dom": "18.2.0",
"sass": "^1.75.0",
"sass-loader": "^14.2.1",
"style-loader": "^4.0.0",
"url-loader": "^4.1.1",
"webpack": "^5.91.0"
}
}