-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
66 lines (66 loc) · 2.33 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
{
"name": "wp-kit-elementor",
"slug": "wp-kit-elementor",
"homepage": "https://wpkit.pro",
"description": "A sample WordPress theme for Elementor page builder.",
"version": "1.0.6",
"private": true,
"scripts": {
"update-version": "node .github/scripts/update-version-in-files.js",
"build:prod": "grunt default --environment=production && WP_SRC_DIRECTORY=$(pwd) wp-scripts build --env=production",
"build:dev": "concurrently \"grunt default\" \"webpack --env=development\"",
"build:dev:watch": "concurrently \"grunt default watch\" \"webpack --env=local\"",
"clean:build": "rimraf build && rimraf wp-kit-elementor",
"zip": "npm run clean:build && npm run build:prod && mv build wp-kit-elementor && zip -r wp-kit-elementor.$npm_package_version.zip wp-kit-elementor/*"
},
"devDependencies": {
"@babel/core": "^7.23.7",
"@babel/plugin-proposal-class-properties": "^7.18.6",
"@babel/plugin-proposal-optional-chaining": "^7.21.0",
"@babel/preset-env": "^7.23.7",
"@wordpress/components": "^25.14.0",
"@wordpress/eslint-plugin": "^17.5.0",
"@wordpress/i18n": "^4.48.0",
"@wordpress/notices": "^4.16.0",
"@wordpress/scripts": "^26.19.0",
"autoprefixer": "^10.4.16",
"babel-eslint": "^10.1.0",
"babel-loader": "^9.1.3",
"concurrently": "^8.2.2",
"copy-webpack-plugin": "^11.0.0",
"cssnano": "^6.0.3",
"dotenv": "^16.3.2",
"eslint": "^8.56.0",
"eslint-config-wordpress": "^2.0.0",
"eslint-plugin-babel": "^5.3.1",
"eslint-plugin-jsx-a11y": "^6.8.0",
"eslint-plugin-no-jquery": "^2.7.0",
"eslint-plugin-react": "^7.33.2",
"eslint-webpack-plugin": "^4.0.1",
"grunt": "^1.6.1",
"grunt-checktextdomain": "^1.0.1",
"grunt-contrib-sass": "^2.0.0",
"grunt-contrib-watch": "^1.1.0",
"grunt-sass": "^3.1.0",
"grunt-text-replace": "^0.4.0",
"grunt-webpack": "^6.0.0",
"grunt-wp-readme-to-markdown-with-extra": "^2.2.0",
"load-grunt-tasks": "^5.1.0",
"matchdep": "^2.0.0",
"npm-build-zip": "^1.0.4",
"react": "^18.2.0",
"replace-in-file": "^7.1.0",
"rimraf": "^5.0.5",
"sass": "^1.69.7",
"terser-webpack-plugin": "^5.3.10",
"webpack": "^5.89.0",
"webpack-cli": "^5.1.4"
},
"dependencies": {
"@babel/plugin-transform-modules-commonjs": "^7.23.3",
"@babel/plugin-transform-runtime": "^7.23.7",
"@lodder/grunt-postcss": "^3.1.1",
"grunt-autoprefixer": "^3.0.4",
"grunt-cssnano": "^3.0.0"
}
}