-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
50 lines (50 loc) · 1.87 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
{
"name": "alternative-site-logo",
"version": "0.0.1",
"description": "",
"author": "Photosynthesic",
"license": "GPL-2.0-or-later",
"main": "build/index.js",
"scripts": {
"build": "wp-scripts build",
"build:dev": "wp-scripts build --mode=development",
"build:admin": "npx webpack --config webpack.config.admin.js",
"dist": "run-s dist:*",
"format": "wp-scripts format",
"lint:css": "wp-scripts lint-style",
"lint:css-fix": "npm run lint:css -- --fix",
"lint:js": "wp-scripts lint-js",
"lint:js-fix": "wp-scripts lint-js -- --fix",
"start": "wp-scripts start",
"packages-update": "wp-scripts packages-update",
"test:e2edev": "npx wp-scripts test-e2e --config tests/e2e/jest.config.js --puppeteer-interactive",
"test:e2e": "npx wp-scripts test-e2e --config tests/e2e/jest.config.js",
"dist:mkdir": "mkdir -p ./dist/alternative-site-logo/src/block/",
"dist:copy": "cp ./alternative-site-logo.php ./dist/alternative-site-logo/ & cp -R ./build/ ./dist/alternative-site-logo/build/ & cp -R ./src/block/index.php ./dist/alternative-site-logo/src/block/ & cp -R ./src/block/block.json ./dist/alternative-site-logo/src/block/",
"dist:zip": "cd ./dist/ && bestzip alternative-site-logo.zip *"
},
"dependencies": {
"@wordpress/block-editor": "^8.1.1",
"@wordpress/blocks": "^11.2.1",
"@wordpress/element": "^4.1.1",
"@wordpress/i18n": "^4.3.1",
"@wordpress/jest-console": "^5.0.1",
"jest-circus": "^27.5.1"
},
"devDependencies": {
"@babel/preset-react": "^7.16.7",
"@types/dompurify": "^2.3.3",
"@wordpress/e2e-test-utils": "^6.0.1",
"@wordpress/jest-preset-default": "^8.0.1",
"@wordpress/jest-puppeteer-axe": "^4.0.1",
"@wordpress/scripts": "^21.0.2",
"bestzip": "^2.2.0",
"dompurify": "^2.3.6",
"dotenv": "^16.0.0",
"npm-check-updates": "^12.4.0",
"npm-run-all": "^4.1.5",
"prettier": "^2.5.1",
"typescript": "^4.7.4",
"uuid": "^8.3.2"
}
}