-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
37 lines (37 loc) · 932 Bytes
/
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
{
"name": "vmark-monorepo",
"private": true,
"type": "module",
"engines": {
"node": "^14.18.0 || >=16.0.0"
},
"scripts": {
"format": "prettier --write --cache .",
"lint": "eslint --fix --cache .",
"prepare": "husky install",
"build": "pnpm -r --filter='./packages/*' run build",
"test": "vitest run"
},
"devDependencies": {
"@types/node": "^18.16.0",
"@typescript-eslint/eslint-plugin": "^5.59.0",
"@typescript-eslint/parser": "^5.59.0",
"eslint": "^8.39.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-prettier": "^4.2.1",
"husky": "^8.0.3",
"lint-staged": "^13.2.1",
"prettier": "^2.8.8",
"rimraf": "^5.0.0",
"typescript": "^5.0.4",
"unbuild": "^1.2.1",
"vite": "^4.3.1",
"vitest": "^0.30.1",
"vue": "^3.2.47"
},
"lint-staged": {
"src/**/*.{ts,tsx,js,jsx,vue}": [
"eslint --fix --max-warnings=0"
]
}
}