-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
81 lines (81 loc) · 2.24 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
70
71
72
73
74
75
76
77
78
79
80
81
{
"name": "nest-swagger-mock",
"version": "1.0.0",
"description": "",
"private": true,
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"prepare": "husky install",
"lint:staged": "lint-staged",
"new": "node scripts/new-package.mjs",
"publish": "lerna publish --message \"chore(release): publish\""
},
"lint-staged": {
"packages/**/*.{ts,tsx}": [
"eslint --quiet --fix"
],
"scripts/**/*.{js,mjs}": [
"eslint --quiet --fix --ext js,mjs"
]
},
"engines": {
"node": ">=14.15.0"
},
"author": "",
"license": "MIT",
"devDependencies": {
"@commitlint/cli": "^17.1.2",
"@commitlint/config-conventional": "^17.1.0",
"@faker-js/faker": "^7.6.0",
"@nestjs/cli": "^9.0.0",
"@nestjs/common": "^9.1.6",
"@nestjs/core": "^9.1.6",
"@nestjs/mapped-types": "^1.1.0",
"@nestjs/platform-express": "^9.1.6",
"@nestjs/schematics": "^9.0.0",
"@nestjs/swagger": "^6.1.2",
"@nestjs/testing": "^9.1.6",
"@swc/core": "^1.3.10",
"@swc/jest": "^0.2.23",
"@types/express": "^4.17.14",
"@types/fs-extra": "^9.0.13",
"@types/inquirer": "^9.0.2",
"@types/jest": "^29.2.0",
"@types/lodash": "^4.14.186",
"@types/node": "^18.11.0",
"@types/supertest": "^2.0.12",
"@typescript-eslint/eslint-plugin": "^5.40.1",
"@typescript-eslint/parser": "^5.40.1",
"eslint": "^8.25.0",
"eslint-plugin-eslint-comments": "^3.2.0",
"eslint-plugin-filenames": "^1.3.2",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-jest": "^27.1.3",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-unused-imports": "^2.0.0",
"fs-extra": "^10.1.0",
"husky": "^8.0.1",
"inquirer": "^9.1.4",
"jest": "^29.2.2",
"lerna": "^6.0.1",
"lint-staged": "^13.0.3",
"lodash": "^4.17.21",
"prettier": "^2.7.1",
"reflect-metadata": "^0.1.13",
"rimraf": "^3.0.2",
"rxjs": "^7.5.7",
"source-map-support": "^0.5.20",
"supertest": "^6.3.0",
"ts-jest": "^29.0.3",
"ts-loader": "^9.2.3",
"ts-node": "^10.9.1",
"tsc-alias": "^1.7.0",
"tsconfig-paths": "4.1.0",
"typescript": "^4.8.4"
},
"workspaces": [
"packages/*"
]
}