-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
42 lines (42 loc) · 1.18 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
{
"name": "@thasmo/nuxt-boilerplate",
"private": true,
"type": "module",
"packageManager": "[email protected]",
"engines": {
"node": ">=22",
"pnpm": ">=9"
},
"scripts": {
"build": "nuxt build",
"dev": "nuxt dev",
"generate": "nuxt generate",
"preview": "nuxt preview",
"prepare": "concurrently --group --prefix-colors 'auto' 'pnpm:prepare:*'",
"prepare:nuxt": "nuxt prepare",
"prepare:husky": "husky",
"lint": "concurrently --group --prefix-colors 'auto' 'pnpm:lint:*'",
"lint:eslint": "eslint '**/*.{js,jsx,ts,tsx}'",
"lint:prettier": "prettier --check '**/*.{md,json,yml,yaml}'",
"lint:cspell": "cspell --no-progress --no-summary --no-must-find-files '**/*.*'",
"lint:knip": "knip --no-progress"
},
"dependencies": {
"nuxt": "^3.14.159"
},
"devDependencies": {
"@commitlint/cli": "^19.5.0",
"@nuxt/eslint": "^1.0.0",
"@somehow-digital/commitlint-config": "^1.0.0",
"@somehow-digital/cspell-dictionary": "^2.0.0",
"@somehow-digital/prettier-config": "^2.0.0",
"concurrently": "^9.1.0",
"cspell": "^8.16.0",
"eslint": "^9.14.0",
"husky": "^9.1.6",
"knip": "^5.36.4",
"lint-staged": "^15.2.10",
"prettier": "^3.3.3",
"typescript": "^5.6.3"
}
}