-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 1.74 KB
/
Copy pathpackage.json
File metadata and controls
44 lines (44 loc) · 1.74 KB
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
{
"name": "druxt-quickstart",
"version": "1.0.0",
"private": true,
"description": "Druxt quickstart: fully decoupled Drupal + Nuxt mono-repo starter.",
"packageManager": "[email protected]",
"scripts": {
"setup": "node scripts/setup.mjs",
"dev": "node scripts/dev.mjs",
"build": "npm --prefix nuxt run build",
"start": "node scripts/start.mjs",
"stop": "node scripts/stop.mjs",
"assemble": "node scripts/devtools.mjs assemble",
"provision": "node scripts/devtools.mjs provision",
"devtools": "node scripts/devtools.mjs",
"login": "node scripts/login.mjs",
"drush": "node scripts/drush.mjs",
"xdebug": "node scripts/xdebug.mjs",
"info": "node scripts/info.mjs",
"reset": "node scripts/reset.mjs",
"postinstall": "node scripts/postinstall.mjs",
"lint:js": "eslint scripts",
"lint:format": "prettier --check \"**/*.{js,mjs,cjs,json,jsonc,md,yml,yaml}\"",
"lint:format:fix": "prettier --write \"**/*.{js,mjs,cjs,json,jsonc,md,yml,yaml}\"",
"lint:cspell": "cspell lint --no-progress --no-must-find-files --gitignore --dot \"**/*.{js,mjs,cjs,json,jsonc,md,yml,yaml}\"",
"lint:md": "markdownlint-cli2 \"**/*.md\"",
"lint:knip": "knip --include dependencies,unlisted --no-config-hints",
"lint:commit": "commitlint",
"lint:audit": "npm audit --omit=dev --audit-level=high",
"lint:renovate": "npx --yes --package renovate renovate-config-validator"
},
"devDependencies": {
"@commitlint/cli": "^21.2.2",
"@commitlint/config-conventional": "^21.2.2",
"@eslint/js": "^10.0.1",
"cspell": "^10.0.1",
"eslint": "^10.1.8",
"eslint-config-prettier": "^10.1.8",
"globals": "^17.11.0",
"knip": "^6.32.2",
"markdownlint-cli2": "^0.23.2",
"prettier": "^3.9.6"
}
}