-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 2.15 KB
/
Copy pathpackage.json
File metadata and controls
48 lines (48 loc) · 2.15 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
45
46
47
48
{
"name": "druxt-quickstart",
"version": "0.3.0",
"private": true,
"description": "Druxt quickstart: fully decoupled Drupal + Nuxt mono-repo starter.",
"packageManager": "npm@8.19.2",
"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",
"check:oauth": "node scripts/check-oauth.mjs",
"test:scripts": "node --test \"test/*.test.mjs\"",
"test:scripts:coverage": "mkdir -p coverage && node --experimental-test-coverage --test-reporter=lcov --test-reporter-destination=coverage/scripts-lcov.info --test-reporter=spec --test-reporter-destination=stdout --test \"test/*.test.mjs\"",
"reset": "node scripts/reset.mjs",
"postinstall": "node scripts/postinstall.mjs",
"lint:js": "eslint scripts test",
"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",
"lint:private": "node scripts/lint-private-refs.mjs"
},
"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"
}
}