forked from surrealwebs/basic-composer
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
executable file
·111 lines (111 loc) · 3.7 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
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
{
"name": "surrealwebs-composer",
"version": "1.0.1",
"description": "Surrealwebs Basic Composer example with Block support.",
"author": "Adam Richards",
"license": "GPL-3.0-or-later",
"keywords": [
"WordPress",
"Plugins"
],
"engines": {
"node": ">=14.0.0"
},
"homepage": "https://github.com/surrealwebs/basic-composer#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/surrealwebs/basic-composer.git"
},
"bugs": {
"url": "https://github.com/surrealwebs/basic-composer#readme/issues"
},
"browserslist": [
"last 2 Chrome versions",
"last 2 Firefox versions",
"last 2 Safari versions",
"last 2 Edge versions",
"last 2 iOS versions",
"last 1 Android version",
"last 1 ChromeAndroid version",
"> 2%"
],
"devDependencies": {
"@babel/core": "^7.21.4",
"@babel/node": "^7.20.7",
"@emotion/server": "^11.10.0",
"@wordpress/api-fetch": "^6.5.0",
"@wordpress/block-editor": "^9.0.0",
"@wordpress/blocks": "^11.7.0",
"@wordpress/components": "^19.10.0",
"@wordpress/compose": "^5.6.0",
"@wordpress/data": "^6.8.0",
"@wordpress/dom-ready": "^3.8.0",
"@wordpress/e2e-test-utils": "^7.4.0",
"@wordpress/element": "^4.6.0",
"@wordpress/env": "^4.6.0",
"@wordpress/hooks": "^3.8.0",
"@wordpress/html-entities": "^3.8.0",
"@wordpress/i18n": "^4.8.0",
"@wordpress/rich-text": "^5.6.0",
"@wordpress/scripts": "^23.0.0",
"@wordpress/server-side-render": "^3.6.0",
"@wordpress/stylelint-config": "^20.0.2",
"@wordpress/url": "^3.9.0",
"chart.js": "^4.2.1",
"classnames": "^2.3.1",
"del": "^6.0.0",
"dir-archiver": "^1.1.1",
"expect-puppeteer": "^5.0.4",
"husky": "^4.3.8",
"lodash": "^4.17.21",
"npm-run-all": "^4.1.5",
"react-chartjs-2": "^5.2.0",
"react-select": "^4.3.1",
"react-sortable-hoc": "^2.0.0",
"requestidlecallback-polyfill": "^1.0.2",
"stickybits": "^3.7.9"
},
"scripts": {
"dev": "npm-run-all --parallel dev:*",
"dev:js": "wp-scripts start --webpack-src-dir=./src/blocks --output-path=build/blocks --webpack-devtool=eval-source-map",
"dev:assets": "wp-scripts start ./assets/main.js ./assets/editor.js --output-path=build/assets --webpack-devtool=eval-source-map",
"build": "npm-run-all build:*",
"build:assets": "wp-scripts build ./assets/main.js ./assets/editor.js --output-path=build/assets",
"build:blocks": "wp-scripts build --webpack-src-dir=./src/blocks --output-path=build/blocks",
"lint": "npm-run-all --parallel lint:*",
"lint:css": "wp-scripts lint-style",
"lint:js": "wp-scripts lint-js",
"lint:php": "composer lint",
"format": "npm-run-all --parallel format:*",
"format:css": "npm run lint:css -- --fix",
"format:js": "npm run lint:js -- --fix",
"format:php": "composer lint-fix",
"bundle": "dir-archiver --src . --dest ./surrealwebs-basic-composer.zip --exclude surrealwebs-basic-composer.zip .DS_Store .stylelintrc.json .eslintrc .git .gitattributes .github .gitignore README.md composer.json composer.lock node_modules vendor package-lock.json package.json tools tests phpcs.xml.dist sass style.css.map",
"postinstall": "composer install",
"release": "npm install --ignore-scripts && npm run build"
},
"husky": {
"hooks": {
"pre-commit": "npm run lint",
"pre-push": "npm run lint"
}
},
"dependencies": {
"@emotion/react": "^11.10.6",
"@emotion/styled": "^11.10.6",
"@mui/icons-material": "^5.11.16",
"@mui/material": "^5.11.15",
"@wordpress/date": "^4.22.0",
"@wordpress/icons": "^9.0.0",
"chart.js": "^4.2.1",
"chartjs-adapter-date-fns": "^3.0.0",
"d3": "^7.8.4",
"date-fns": "^2.30.0",
"decimal.js": "^10.4.3",
"esm": "^3.2.25",
"react-chartjs-2": "^5.2.0",
"react-loading-skeleton": "^3.3.1",
"react-number-format": "^5.1.4",
"use-debounce": "^8.0.2"
}
}