-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathpackage.json
57 lines (57 loc) · 1.36 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
47
48
49
50
51
52
53
54
55
56
57
{
"name": "doubleshot-monorepo",
"private": true,
"packageManager": "[email protected]",
"description": "A solution to save effort",
"author": "ArcherGu (https://github.com/ArcherGu/)",
"keywords": [
"electron",
"vite",
"nestjs"
],
"scripts": {
"build": "pnpm -r --filter=./packages/* run build",
"test": "npm run build && npm run test-only",
"test-only": "vitest run",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"release": "mor",
"ci-publish": "mor publish -u pnpm",
"postinstall": "npx simple-git-hooks"
},
"devDependencies": {
"@esm2cjs/execa": "6.1.1-cjs.1",
"@lightwing/eslint-config": "1.0.106",
"@nestjs/testing": "11.0.10",
"@swc/core": "1.10.18",
"@types/fs-extra": "11.0.4",
"@types/node": "22.13.4",
"conventional-changelog-cli": "5.0.0",
"eslint": "9.20.1",
"fs-extra": "11.3.0",
"lint-staged": "15.4.3",
"mono-release": "2.9.27",
"rimraf": "6.0.1",
"simple-git-hooks": "2.11.1",
"tsup": "8.3.6",
"typescript": "5.7.3",
"vitest": "3.0.6"
},
"pnpm": {
"onlyBuiltDependencies": [
"@nestjs/core",
"@swc/core",
"electron",
"esbuild",
"simple-git-hooks"
]
},
"simple-git-hooks": {
"pre-commit": "npx lint-staged"
},
"lint-staged": {
"*.{js,ts,tsx,vue,md,json,yml}": [
"eslint --fix"
]
}
}