-
Notifications
You must be signed in to change notification settings - Fork 18
/
package.json
67 lines (67 loc) · 2.35 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
{
"name": "block-experiments",
"version": "1.0.0",
"description": "A monorepo for blocks",
"main": "src/index.js",
"author": "Automattic",
"license": "GPL-2.0-or-later",
"scripts": {
"env": "wp-env",
"start": "yarn build-css & wp-scripts start & node-sass --watch editor.scss -o build & node-sass --watch style.scss -o build",
"build": "wp-scripts build && yarn build-css",
"build-css": "node-sass ./editor.scss -o build | postcss build/editor.css -u autoprefixer -b 'last 2 versions' -r --no-map && node-sass ./style.scss -o build | postcss build/style.css -u autoprefixer -b 'last 2 versions' -r --no-map",
"plugin": "yarn clean && node ./bundler/build",
"everything": "./bundler/build/everything.sh",
"bundle": "./build/bundle.sh",
"all": "node ./bundler/all.js",
"clean": "rm -rf ./build ./plugin",
"lint": "npm run lint-js & npm run lint-php",
"lint-js": "wp-scripts lint-js blocks",
"lint-php": "composer run lint",
"blockbook:start": "npm run build-css && blockbook start",
"blockbook:build": "npm run build-css && blockbook build"
},
"devDependencies": {
"@babel/plugin-proposal-class-properties": "^7.16.7",
"@testing-library/react": "^12.1.2",
"@types/jest": "^27.4.0",
"@types/mocha": "^9.1.0",
"@wordpress/env": "^4.1.3",
"@wordpress/icons": "^6.1.1",
"@wordpress/jest-preset-default": "^7.1.3",
"@wordpress/prettier-config": "^1.1.1",
"@wordpress/scripts": "^19.2.3",
"autoprefixer": "^10.4.2",
"blockbook-cli": "^0.7.0",
"eslint": "^8.7.0",
"eslint-config-wpcalypso": "^6.1.0",
"eslint-plugin-eslint-comments": "^3.2.0",
"eslint-plugin-import": "^2.25.4",
"eslint-plugin-jest": "^26.0.0",
"eslint-plugin-jsx-a11y": "^6.5.1",
"eslint-plugin-react": "^7.28.0",
"eslint-plugin-wpcalypso": "^5.0.0",
"fs-extra": "^10.0.0",
"jest-image-snapshot": "^4.5.1",
"jest-puppeteer": "^6.0.3",
"jest-transform-css": "^3.0.0",
"jest-transform-file": "^1.1.1",
"jsdom-screenshot": "^4.0.0",
"node-sass": "^7.0.1",
"postcss": "^8.4.5",
"postcss-cli": "^9.1.0",
"puppeteer": "^13.1.2",
"replace-in-file": "^6.3.2",
"stringcase": "^4.3.1"
},
"dependencies": {
"@google/model-viewer": "^1.11.1",
"@wordpress/block-editor": "^8.0.13",
"@wordpress/blocks": "^11.1.5",
"classnames": "^2.3.1",
"colord": "^2.9.3",
"fast-average-color": "^7.0.1",
"perfect-freehand": "1.2.0",
"tinycolor2": "^1.4.2"
}
}