-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
68 lines (68 loc) · 2.27 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
{
"name": "vip-workflow",
"version": "0.4.0",
"description": "VIP Workflow",
"scripts": {
"build": "webpack --mode production",
"dev": "webpack --watch",
"dev:hot": "wp-scripts start -c webpack.config.js --hot",
"wp-env": "wp-env",
"check-types": "tsc --noEmit",
"cmd:format": "prettier '**/*.(js|json|jsx|md|ts|tsx|yml|yaml)'",
"format": "npm run cmd:format -- --write",
"format:check": "npm run cmd:format -- --check",
"lint": "npm run lint:js && npm run lint:css",
"lint:js": "eslint --ext 'js,jsx,ts,tsx' --quiet",
"lint:js:fix": "eslint --ext 'js,jsx,ts,tsx' --quiet --fix",
"lint:css:fix": "wp-scripts lint-style --fix",
"lint:css": "wp-scripts lint-style"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Automattic/vip-workflow-plugin.git"
},
"author": "Automattic",
"license": "GPL-3.0-or-later",
"bugs": {
"url": "https://github.com/Automattic/vip-workflow-plugin/issues"
},
"homepage": "https://github.com/Automattic/vip-workflow-plugin#readme",
"devDependencies": {
"@automattic/eslint-plugin-wpvip": "^0.13.0",
"@babel/preset-react": "^7.24.7",
"@hello-pangea/dnd": "^16.6.0",
"@types/wordpress__block-editor": "^11.5.15",
"@types/wordpress__editor": "^14.3.0",
"@wordpress/api-fetch": "^7.2.0",
"@wordpress/block-editor": "^14.0.0",
"@wordpress/components": "^27.6.0",
"@wordpress/compose": "^7.2.0",
"@wordpress/core-data": "^7.8.0",
"@wordpress/data": "^10.2.0",
"@wordpress/dom-ready": "^4.2.0",
"@wordpress/edit-post": "^8.2.0",
"@wordpress/editor": "^14.5.0",
"@wordpress/element": "^5.35.0",
"@wordpress/env": "^9.10.0",
"@wordpress/i18n": "^4.58.0",
"@wordpress/icons": "^10.2.0",
"@wordpress/interface": "^6.5.0",
"@wordpress/notices": "^5.5.0",
"@wordpress/plugins": "^7.2.0",
"@wordpress/scripts": "^27.9.0",
"clsx": "^2.1.1",
"dotenv": "^16.4.5",
"eslint": "^8.56.0",
"glob": "^10.4.2",
"prettier": "npm:[email protected]",
"react": "^18.3.1",
"react-dom": "^18.0.0",
"stylelint": "^14.16.1",
"ts-loader": "^9.5.1",
"typescript": "^5.6.2",
"webpack": "^5.91.0"
},
"stylelint": {
"extends": "./node_modules/@wordpress/scripts/config/.stylelintrc.json"
}
}