-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
62 lines (62 loc) · 1.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
{
"name": "@dekode/project-base",
"private": true,
"engines": {
"node": "20",
"npm": ">=10"
},
"packageManager": "[email protected]",
"workspaces": [
"packages/mu-plugins/*",
"packages/plugins/*",
"packages/themes/*"
],
"devDependencies": {
"@csstools/postcss-global-data": "^3.0.0",
"@wordpress/eslint-plugin": "^21.1.2",
"@wordpress/scripts": "^30.0.2",
"@wordpress/stylelint-config": "^23.0.0",
"autoprefixer": "^10.4.20",
"browser-sync": "^3.0.3",
"browser-sync-v3-webpack-plugin": "^0.1.0",
"cssnano": "^7.0.6",
"dotenv": "^16.4.5",
"eslint-plugin-prettier": "^5.2.1",
"husky": "^9.1.6",
"lint-staged": "^15.2.10",
"npm-run-all": "^4.1.5",
"postcss": "^8.4.47",
"postcss-custom-media": "^11.0.1",
"postcss-discard-comments": "^7.0.3",
"postcss-import": "^16.1.0",
"postcss-media-minmax": "^5.0.0",
"postcss-mixins": "^11.0.2",
"postcss-nesting": "^13.0.0",
"postcss-url": "^10.1.3",
"prettier": "^3.3.3",
"turbo": "^2.1.2"
},
"scripts": {
"create-block": "cd packages/plugins && npx dekodeinteraktiv/create-project-base-block",
"create-innerblock-block": "cd packages/plugins && npx dekodeinteraktiv/create-project-base-block --template innerblocks",
"prepare": "husky",
"build": "turbo run build",
"start": "turbo run start",
"clean": "turbo run clean && rm -rf node_modules",
"format": "prettier --write .",
"lint": "npm-run-all --parallel lint:js lint:css lint:format",
"lint:css": "wp-scripts lint-style",
"lint:js": "wp-scripts lint-js",
"lint:format": "prettier --check .",
"lint-staged": "lint-staged"
},
"lint-staged": {
"*.css": [
"wp-scripts lint-style"
],
"*.{js,ts,tsx}": [
"prettier --write .",
"wp-scripts lint-js"
]
}
}