-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
46 lines (46 loc) · 1.54 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
{
"name": "inpsyde-user",
"version": "0.1.0",
"description": "Example block written with ESNext standard and JSX support – build step required.",
"author": "The WordPress Contributors",
"license": "GPL-2.0-or-later",
"main": "build/index.js",
"scripts": {
"build": "wp-scripts build",
"format": "wp-scripts format",
"lint:css": "wp-scripts lint-style",
"lint:js": "wp-scripts lint-js",
"start": "wp-scripts start",
"test:e2e": "wp-scripts test-e2e -- --wordpress-base-url=http://localhost:3601/",
"test:e2e:debug": "wp-scripts test-e2e --puppeteer-interactive",
"test:unit": "wp-scripts test-unit-js --config jest.config.js",
"packages-update": "wp-scripts packages-update",
"phpcs": "vendor/bin/phpcs --standard='Inpsyde' ./inc",
"phpcbf": "vendor/bin/phpcbf --standard='Inpsyde' ./inc"
},
"dependencies": {
"@wordpress/block-editor": "^8.0.1",
"@wordpress/blocks": "^11.1.3",
"@wordpress/components": "^19.0.2",
"@wordpress/i18n": "^4.2.3"
},
"devDependencies": {
"@babel/core": "^7.16.0",
"@babel/preset-env": "^7.16.4",
"@babel/preset-react": "^7.16.0",
"@wordpress/dependency-extraction-webpack-plugin": "^3.2.1",
"@wordpress/e2e-test-utils": "^5.4.8",
"@wordpress/scripts": "^19.1.0",
"babel-loader": "^8.2.3",
"babel-plugin-syntax-dynamic-import": "^6.18.0",
"css-loader": "^6.5.1",
"extract-loader": "^5.1.0",
"file-loader": "^6.2.0",
"node-sass": "^6.0.1",
"sass-loader": "^12.3.0",
"style-loader": "^3.3.1",
"terser-webpack-plugin": "^5.2.5",
"webpack": "^5.64.1",
"webpack-cli": "^4.9.1"
}
}