-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
69 lines (69 loc) · 1.99 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
58
59
60
61
62
63
64
65
66
67
68
69
{
"name": "@anchan828/template-packages",
"version": "0.0.0",
"private": true,
"description": "",
"homepage": "https://github.com/anchan828/nest-lerna-template",
"bugs": {
"url": "https://github.com/anchan828/nest-lerna-template/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/anchan828/nest-lerna-template.git"
},
"license": "MIT",
"author": "anchan828 <anchan828@gmail.com>",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"workspaces": [
"packages/*"
],
"scripts": {
"build": "turbo run build",
"compodoc": "compodoc -c .compodocrc.json",
"format": "prettier --write '**/*.{ts,js,json,yml,yaml,md}'",
"postinstall": "husky install",
"lint": "turbo run lint",
"lint:fix": "turbo run lint:fix",
"publish": "lerna publish --yes patch",
"publish:major": "lerna publish --yes major",
"publish:minor": "lerna publish --yes minor",
"test": "turbo run test",
"watch": "turbo run watch"
},
"devDependencies": {
"@commitlint/cli": "19.5.0",
"@commitlint/config-conventional": "19.5.0",
"@compodoc/compodoc": "1.1.25",
"@eslint/compat": "^1.1.1",
"@eslint/js": "^9.9.0",
"@lerna-lite/cli": "3.9.1",
"@lerna-lite/publish": "3.9.1",
"@nestjs/common": "10.4.3",
"@nestjs/core": "10.4.3",
"@nestjs/platform-express": "10.4.3",
"@nestjs/testing": "10.4.3",
"@types/glob": "8.1.0",
"@types/jest": "29.5.13",
"@types/node": "20.16.5",
"@types/prettier": "3.0.0",
"@types/rimraf": "4.0.5",
"@types/supertest": "6.0.2",
"eslint": "9.11.0",
"eslint-plugin-sort-keys-fix": "1.1.2",
"glob": "11.0.0",
"husky": "9.1.6",
"jest": "29.7.0",
"lint-staged": "15.2.10",
"prettier": "3.3.3",
"reflect-metadata": "0.2.2",
"rimraf": "6.0.1",
"supertest": "7.0.0",
"ts-jest": "29.2.5",
"ts-node": "10.9.2",
"turbo": "2.1.2",
"typescript": "5.6.2",
"typescript-eslint": "^8.0.1"
},
"packageManager": "npm@10.8.3"
}