-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
39 lines (39 loc) · 1.44 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
{
"name": "sage",
"private": true,
"browserslist": [
"extends @roots/browserslist-config"
],
"engines": {
"node": ">=16.0.0"
},
"type": "module",
"scripts": {
"dev": "bud dev",
"build": "bud build",
"translate": "yarn translate:pot && yarn translate:update",
"translate:pot": "wp i18n make-pot . ./resources/lang/sage.pot --include=\"app,resources\"",
"translate:update": "wp i18n update-po ./resources/lang/sage.pot ./resources/lang/*.po",
"translate:compile": "yarn translate:mo && yarn translate:js",
"translate:js": "wp i18n make-json ./resources/lang --pretty-print",
"translate:mo": "wp i18n make-mo ./resources/lang ./resources/lang",
"lint": "yarn lint:js && yarn lint:css",
"lint:js": "eslint resources/scripts",
"lint:css": "stylelint \"resources/**/*.{css,scss,vue}\"",
"test": "yarn lint",
"write": "prettier . --write"
},
"devDependencies": {
"@roots/bud": "6.16.1",
"@roots/bud-eslint": "6.16.0",
"@roots/bud-postcss": "6.16.1",
"@roots/bud-prettier": "6.16.0",
"@roots/bud-sass": "6.16.1",
"@roots/bud-stylelint": "6.16.1",
"@roots/bud-tailwindcss": "6.16.1",
"@roots/eslint-config": "^6.18.0",
"@roots/sage": "6.16.1",
"@shufo/prettier-plugin-blade": "^1.13.4",
"prettier-plugin-tailwindcss": "^0.5.9"
}
}