-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
85 lines (85 loc) · 2.73 KB
/
Copy pathpackage.json
File metadata and controls
85 lines (85 loc) · 2.73 KB
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
{
"name": "construct-wp",
"version": "1.0.0",
"description": "ConstructWP system",
"repository": {
"type": "git",
"url": "https://github.com/apalfrey/construct-wp"
},
"license": "GPL-2.0+",
"author": {
"name": "Andrew Palfrey",
"email": "apalfrey@apalfrey.me",
"url": "https://github.com/apalfrey"
},
"main": "index.js",
"scripts": {
"postinstall": "patch-package",
"start": "gulp",
"build": "gulp build",
"watch": "gulp watch",
"clean": "gulp clean",
"styles": "gulp styles",
"styles:lint": "gulp styles:lint",
"styles:build": "gulp styles:build",
"styles:watch": "gulp styles:watch",
"webpack": "gulp webpack",
"webpack:lint": "gulp webpack:lint",
"webpack:compile": "gulp webpack:compile",
"webpack:watch": "gulp webpack:watch",
"translate": "gulp translate",
"translate:watch": "gulp translate:watch",
"browsersync": "gulp browsersync",
"archive": "gulp archive",
"phpcs": "composer run-script phpcs",
"phpcs:watch": "nodemon --watch . -e php --ignore vendor/ --ignore node_modules/ --exec \"composer run-script phpcs\""
},
"dependencies": {
"@popperjs/core": "^2.11.8",
"@wordpress/components": "^25.9.0",
"@wordpress/data": "^9.13.0",
"@wordpress/edit-post": "^7.20.0",
"@wordpress/element": "^5.20.0",
"@wordpress/hooks": "^3.43.0",
"@wordpress/i18n": "^4.43.0",
"@wordpress/notices": "^4.11.0",
"@wordpress/plugins": "^6.11.0",
"bootstrap": "^5.3.2",
"patch-package": "^8.0.0",
"postinstall-postinstall": "^2.1.0",
"react": "^18.2.0",
"react-dom": "^18.2.0"
},
"devDependencies": {
"@automattic/babel-plugin-preserve-i18n": "^1.0.0",
"@babel/core": "^7.23.0",
"@babel/preset-env": "^7.22.20",
"@babel/preset-react": "^7.22.15",
"@ilabdev/archive": "^1.0.0",
"@ilabdev/browsersync": "^1.0.0",
"@ilabdev/clean": "^1.0.0",
"@ilabdev/default": "^1.0.0",
"@ilabdev/scripts": "^1.0.0",
"@ilabdev/styles": "^1.0.0",
"@ilabdev/translate": "^1.0.0",
"@ilabdev/webpack": "^1.0.0",
"@rollup/plugin-babel": "^6.0.3",
"@rollup/plugin-node-resolve": "^15.2.1",
"autoprefixer": "^10.4.16",
"babel-loader": "^9.1.3",
"dotenv": "^16.3.1",
"eslint": "^8.50.0",
"eslint-config-xo": "^0.43.1",
"eslint-plugin-import": "^2.28.1",
"eslint-plugin-react": "^7.33.2",
"eslint-plugin-unicorn": "^48.0.1",
"gulp": "^4.0.2",
"nodemon": "^3.0.1",
"postcss": "^8.4.31",
"stylelint": "^15.10.3",
"stylelint-config-twbs-bootstrap": "^11.0.1",
"stylelint-stylistic": "^0.4.3",
"terser-webpack-plugin": "^5.3.9",
"webpack": "^5.88.2"
}
}