generated from Hebilicious/nuxt-module-template
-
-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
46 lines (46 loc) · 1.24 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
{
"name": "nuxt-module-template",
"type": "module",
"version": "0.3.4",
"private": true,
"packageManager": "[email protected]",
"scripts": {
"build": "rimraf packages/*/dist && turbo run build --filter=@hebilicious*",
"build:all": "turbo run build",
"lint": "eslint --cache .",
"lint:fix": "nr lint --fix",
"changelog": "conventional-changelog -p angular -i CHANGELOG.md -s",
"release": "pnpm lint:fix && bumpp -r -x \"pnpm run changelog\" --all",
"typecheck": "tsc --noEmit",
"test": "vitest"
},
"devDependencies": {
"@antfu/ni": "^0.21.12",
"@hebilicious/eslint-config": "0.0.3-beta.3",
"@nuxt/test-utils": "^3.11.0",
"@types/node": "^18.19.10",
"bumpp": "^9.3.0",
"conventional-changelog-cli": "^4.1.0",
"eslint": "8.56.0",
"esno": "^0.17.0",
"fast-glob": "^3.3.2",
"lint-staged": "^14.0.1",
"pnpm": "8.15.1",
"prettier": "^3.2.4",
"rimraf": "^5.0.5",
"simple-git-hooks": "^2.9.0",
"taze": "^0.13.1",
"turbo": "^1.11.3",
"typescript": "^5.3.3",
"unbuild": "^2.0.0",
"vitest": "^0.34.6"
},
"simple-git-hooks": {
"pre-commit": "npx lint-staged"
},
"lint-staged": {
"*.{js,ts,tsx,vue,md}": [
"eslint --cache --fix"
]
}
}