-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
77 lines (77 loc) · 2.42 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
69
70
71
72
73
74
75
76
77
{
"name": "@wp-blocks/block-editor-playground",
"version": "0.1.0",
"private": true,
"description": "A playground to explore Gutenberg editor separate from WordPress.",
"license": "GPL-2.0-or-later",
"contributors": [
"John Hooks <bitmachina@outlook.com> (https://johnhooks.io/)"
],
"homepage": "https://github.com/wp-blocks/block-editor-playground#readme",
"repository": {
"type": "git",
"url": "https://github.com/wp-blocks/block-editor-playground.git"
},
"bugs": "https://github.com/wp-blocks/block-editor-playground/issues",
"type": "module",
"source": "./src/main.ts",
"module": "./dist/main.js",
"sideEffects": false,
"scripts": {
"build": "tsc && vite build",
"check": "tsc -b",
"dev": "vite",
"lint:css": "wp-scripts lint-style",
"lint:js": "wp-scripts lint-js",
"prepare": "husky install",
"preview": "vite preview"
},
"devDependencies": {
"@babel/core": "^7.21.0",
"@babel/preset-typescript": "^7.21.0",
"@rollup/plugin-replace": "^5.0.2",
"@types/babel__core": "^7.20.0",
"@types/node": "^18.14.1",
"@types/react": "^18.0.28",
"@types/react-dom": "^18.0.11",
"@types/wordpress__block-editor": "^11.0.1",
"@types/wordpress__block-library": "^2.6.1",
"@types/wordpress__blocks": "^12.0.3",
"@types/wordpress__components": "^23.0.1",
"@types/wordpress__data": "^6.0.2",
"@typescript-eslint/eslint-plugin": "^5.53.0",
"@typescript-eslint/parser": "^5.53.0",
"@vitejs/plugin-react": "^3.1.0",
"@wordpress/base-styles": "^4.19.0",
"@wordpress/block-editor": "^11.4.0",
"@wordpress/block-library": "^8.5.0",
"@wordpress/blocks": "^12.5.0",
"@wordpress/components": "^23.5.0",
"@wordpress/data": "^8.5.0",
"@wordpress/element": "^5.5.0",
"@wordpress/format-library": "^4.5.0",
"@wordpress/hooks": "^3.27.0",
"@wordpress/i18n": "^4.27.0",
"@wordpress/icons": "^9.18.0",
"@wordpress/interface": "^5.5.0",
"@wordpress/keyboard-shortcuts": "^4.5.0",
"@wordpress/prettier-config": "^2.10.0",
"@wordpress/scripts": "^25.5.1",
"@wordpress/stylelint-config": "^21.10.0",
"@wp-blocks/tsconfig": "^0.1.0",
"babel-jest": "^29.4.3",
"eslint": "^8.34.0",
"eslint-import-resolver-typescript": "^3.5.3",
"eslint-plugin-import": "^2.27.5",
"husky": "^8.0.3",
"lint-staged": "^13.1.2",
"postcss": "^8.4.19",
"prettier": "^2.8.4",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"sass": "^1.58.3",
"stylelint": "^14.16.1",
"typescript": "^4.9.5",
"vite": "^4.1.4"
}
}