forked from wp-blocks/wp-blocks
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
84 lines (84 loc) · 2.62 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
78
79
80
81
82
83
84
{
"name": "wp-blocks",
"version": "0.1.0",
"private": true,
"description": "A monorepo of tools and blocks for the WordPress Gutenberg editor.",
"license": "GPL-2.0-or-later",
"contributors": [
"John Hooks <bitmachina@outlook.com> (https://johnhooks.io/)"
],
"homepage": "https://github.com/wp-blocks/wp-blocks#readme",
"repository": {
"type": "git",
"url": "https://github.com/wp-blocks/wp-blocks.git"
},
"bugs": "https://github.com/wp-blocks/wp-blocks/issues",
"type": "module",
"sideEffects": false,
"workspaces": [
"./examples/*",
"./packages/*"
],
"scripts": {
"clean": "turbo clean",
"clean:all": "turbo clean:all",
"build": "turbo build --filter=./packages/*",
"build:compile": "turbo build:compile --filter=./packages/*",
"build:types": "turbo build:types --filter=./packages/*",
"check": "tsc -b",
"lint:css": "turbo lint:css --filter=./packages/*",
"lint:js": "turbo lint:js --filter=./packages/*",
"wp-env:start": "wp-env start",
"wp-env:stop": "wp-env stop",
"wp-env:destroy": "wp-env destroy",
"test": "jest --silent=false --coverage",
"prepare": "husky install"
},
"dependencies": {
"@babel/core": "^7.21.0",
"@babel/preset-typescript": "^7.21.0",
"@jest/globals": "^29.4.3",
"@microsoft/api-extractor": "^7.34.4",
"@types/babel__core": "^7.20.0",
"@types/expect-puppeteer": "^5.0.3",
"@types/jest": "^29.4.0",
"@types/jest-environment-puppeteer": "^5.0.3",
"@types/node": "^14.18.38",
"@typescript-eslint/eslint-plugin": "^5.55.0",
"@typescript-eslint/parser": "^5.55.0",
"@wordpress/block-editor": "11.4.0",
"@wordpress/block-library": "8.4.0",
"@wordpress/components": "23.4.0",
"@wordpress/e2e-test-utils": "^10.0.0",
"@wordpress/e2e-tests": "^7.0.0",
"@wordpress/env": "^5.14.0",
"@wordpress/hooks": "3.27.0",
"@wordpress/i18n": "4.27.0",
"@wordpress/icons": "9.18.0",
"@wordpress/jest-preset-default": "^11.0.0",
"@wordpress/prettier-config": "^2.12.0",
"@wordpress/scripts": "^26.0.0",
"@wordpress/stylelint-config": "^21.12.0",
"@wp-blocks/scripts": "workspace:^0.1.0",
"@wp-blocks/tsconfig": "workspace:^0.1.0",
"@wp-blocks/types": "workspace:^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",
"jest": "^29.4.3",
"jest-puppeteer": "^6.2.0",
"lint-staged": "^13.1.2",
"postcss": "^8.4.19",
"prettier": "^2.8.4",
"puppeteer": "^18.2.1",
"puppeteer-core": "^18.2.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"stylelint": "^14.16.1",
"turbo": "^1.8.1",
"typescript": "^5.0.2",
"wp-deps": "workspace:^0.2.0"
}
}