-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
59 lines (59 loc) · 2.1 KB
/
package.json
File metadata and controls
59 lines (59 loc) · 2.1 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
{
"name": "travelopia-wordpress-blocks",
"version": "1.0.0",
"description": "Custom blocks for the Gutenberg Block Editor.",
"scripts": {
"start": "npm ci && composer install && npm run build",
"build": "webpack --config ./webpack.config.js --mode production --env=production",
"dev": "webpack --config ./webpack.config.js --mode production --env=development --watch",
"lint": "npm run lint:js && npm run lint:css && npm run lint:php",
"lint:js": "eslint src",
"lint:css": "stylelint src",
"lint:php": "composer run lint",
"lint-test": "npm run lint && npm run static-analysis:php",
"static-analysis:php": "composer static-analysis"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Travelopia/wordpress-blocks.git"
},
"author": "Travelopia Team",
"license": "MIT",
"bugs": {
"url": "https://github.com/Travelopia/wordpress-blocks/issues"
},
"homepage": "https://github.com/Travelopia/wordpress-blocks#readme",
"devDependencies": {
"@types/wordpress__block-editor": "^11.5.9",
"@types/wordpress__blocks": "^12.5.13",
"@types/wordpress__components": "^23.0.11",
"@wordpress/blocks": "^12.25.0",
"@wordpress/components": "^25.14.0",
"@wordpress/dependency-extraction-webpack-plugin": "^4.31.0",
"@wordpress/dom-ready": "^3.48.0",
"@wordpress/editor": "^13.25.0",
"@wordpress/element": "^5.25.0",
"@wordpress/eslint-plugin": "^17.5.0",
"@wordpress/i18n": "^4.48.0",
"@wordpress/icons": "^9.39.0",
"@wordpress/server-side-render": "^4.25.0",
"@wordpress/stylelint-config": "^21.31.0",
"autoprefixer": "^10.4.16",
"classnames": "^2.3.2",
"css-loader": "^6.8.1",
"eslint": "^8.56.0",
"mini-css-extract-plugin": "^2.7.6",
"postcss": "^8.4.32",
"postcss-loader": "^7.3.3",
"sass": "^1.69.5",
"sass-loader": "^13.3.2",
"stylelint": "^14.16.1",
"terser-webpack-plugin": "^5.3.9",
"ts-loader": "^9.5.1",
"typescript": "^5.3.3",
"webpack": "^5.89.0",
"webpack-cli": "^5.1.4",
"webpack-notifier": "^1.15.0",
"webpack-remove-empty-scripts": "^1.0.4"
}
}