-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
41 lines (41 loc) · 1.26 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
{
"name": "packlint-monorepo",
"private": true,
"packageManager": "[email protected]",
"workspaces": [
"./packages/**"
],
"scripts": {
"build": "turbo run build",
"deploy": "yarn turbo run deploy && yarn lerna publish from-git --no-verify-access --yes",
"dev": "turbo run dev",
"lint:all": "yarn eslint --fix",
"packlint:all": "yarn packlint -R",
"prepack": "turbo run prepack",
"test:all": "yarn vitest run",
"version": "yarn turbo run version && yarn lerna version --conventional-commits --yes --git-remote origin"
},
"devDependencies": {
"@babel/core": "^7.19.6",
"@lerna-lite/cli": "^1.13.0",
"@types/jest": "^29.2.1",
"@types/node": "^18.11.9",
"@typescript-eslint/eslint-plugin": "^5.39.0",
"@typescript-eslint/parser": "^5.39.0",
"eslint": "^7",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-jest": "^27.1.3",
"eslint-plugin-simple-import-sort": "^8.0.0",
"packlint": "workspace:^",
"prettier": "^2.7.1",
"turbo": "^1.6.3",
"typescript": "4.8.3",
"vite": "^4.0.2",
"vitest": "^0.26.1"
},
"resolutions": {
"ts-pattern": "patch:ts-pattern@npm:4.0.5#.yarn/patches/ts-pattern-npm-4.0.5-7ba0b14201.patch",
"zod": "3.19.1"
}
}