-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
70 lines (70 loc) · 2.52 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
{
"name": "@atomicsmash/snap-blocks",
"type": "module",
"version": "0.1.0",
"description": "Custom WordPress blocks for our Snap framework",
"author": "Atomic Smash",
"license": "GPL-2.0-or-later",
"homepage": "https://www.atomicsmash.co.uk/",
"main": "snap-blocks.php",
"browserslist": "defaults and >1% and not samsung > 0 and not op_mini all",
"files": [
"snap-blocks.php",
"build"
],
"scripts": {
"build": "NODE_ENV=\"production\" wp-scripts build --config webpack.config.mjs --webpack-copy-php",
"dev": "wp-scripts start --config webpack.config.mjs --webpack-copy-php",
"deploy": "echo \"This project doesn't have an automated deploy process set up yet.\"",
"deploy:prod": "echo \"This project doesn't have an automated deploy process set up yet.\"",
"test": "echo \"This project doesn't have automated testing set up yet.\"",
"test:ui": "echo \"This project doesn't have automated testing set up yet.\"",
"release": "echo \"This project doesn't have any release steps set up yet.\"",
"lint": "npm-run-all --parallel lint:*",
"lint:eslint": "eslint .",
"lint:types": "tsc -b",
"format": "prettier --write .",
"setup": "echo \"This project doesn't have automated local setup, be sure to check the README file for instructions.\"",
"zip": "wp-scripts plugin-zip"
},
"devDependencies": {
"@types/lodash": "^4.14.189",
"@types/node": "^18.11.9",
"@types/webpack": "^5.28.0",
"@types/wordpress__block-editor": "^11.0.1",
"@typescript-eslint/eslint-plugin": "^5.43.0",
"@typescript-eslint/parser": "^5.43.0",
"@wordpress/dependency-extraction-webpack-plugin": "^4.8.0",
"@wordpress/eslint-plugin": "^13.9.0",
"@wordpress/scripts": "^25.2.0",
"autoprefixer": "^10.4.13",
"crypto": "^1.0.1",
"cssnano": "^5.1.14",
"del": "^7.0.0",
"eslint": "^8.27.0",
"eslint-config-prettier": "^8.5.0",
"eslint-import-resolver-alias": "^1.1.2",
"eslint-import-resolver-node": "^0.3.6",
"eslint-import-resolver-typescript": "^3.5.2",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-node": "^11.1.0",
"glob": "^8.0.3",
"npm-run-all": "^4.1.5",
"postcss": "^8.4.18",
"postcss-cli": "^10.0.0",
"prettier": "^2.7.1",
"ts-node": "^10.9.1",
"tsconfig-paths-webpack-plugin": "^4.0.0",
"typescript": "^4.9.3"
},
"dependencies": {
"@wordpress/block-editor": "^11.2.0",
"@wordpress/blocks": "^12.2.0",
"@wordpress/components": "^23.2.0",
"@wordpress/data": "^8.2.0",
"@wordpress/dom-ready": "^3.25.0",
"@wordpress/element": "^5.2.0",
"@wordpress/i18n": "^4.25.0",
"lodash": "^4.17.21"
}
}