-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathpackage.json
48 lines (48 loc) · 1.21 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
{
"name": "doubleshot-monorepo",
"private": true,
"packageManager": "pnpm@9.15.3",
"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.98",
"@nestjs/testing": "10.4.15",
"@swc/core": "1.10.7",
"@types/fs-extra": "11.0.4",
"@types/node": "22.10.5",
"conventional-changelog-cli": "5.0.0",
"eslint": "9.18.0",
"fs-extra": "11.2.0",
"lint-staged": "15.3.0",
"mono-release": "2.9.23",
"rimraf": "6.0.1",
"simple-git-hooks": "2.11.1",
"tsup": "8.3.5",
"typescript": "5.7.3",
"vitest": "2.1.8"
},
"simple-git-hooks": {
"pre-commit": "npx lint-staged"
},
"lint-staged": {
"*.{js,ts,tsx,vue,md,json,yml}": [
"eslint --fix"
]
}
}