-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
73 lines (73 loc) · 1.76 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
{
"name": "@spuxx/nest-utils",
"version": "2.3.2",
"description": "A package containing various utilities for NestJS applications.",
"license": "MIT",
"author": {
"name": "spuxx",
"email": "hi@spuxx.dev",
"url": "https://spuxx.dev"
},
"keywords": [
"spuxx"
],
"repository": {
"type": "git",
"url": "https://github.com/spuxx1701/jslibs"
},
"homepage": "https://github.com/spuxx1701/jslibs/blob/main/packages/nest-utils/README.md",
"bugs": {
"url": "https://github.com/spuxx1701/jslibs/issues"
},
"type": "module",
"main": "dist/main.js",
"module": "dist/main.js",
"types": "dist/main.d.ts",
"exports": {
".": {
"types": "./dist/main.d.ts",
"require": "./dist/main.cjs",
"import": "./dist/main.js",
"default": "./dist/main.js"
}
},
"files": [
"dist",
"README.md",
"LICENSE",
"package.json"
],
"scripts": {
"dev": "vite build --watch",
"build": "vite build",
"types": "tsc --noEmit"
},
"peerDependencies": {
"@nanogiants/nestjs-swagger-api-exception-decorator": "^1.6.0",
"@nestjs/common": "^10.0.0",
"@nestjs/config": "^3.0.0",
"@nestjs/core": "^10.0.0",
"@nestjs/swagger": "^7.0.0",
"@nestjs/testing": "^10.0.0",
"class-transformer": "^0.5.0",
"class-validator": "^0.14.0",
"express-openid-connect": "^2.17.0",
"reflect-metadata": "^0.2.0",
"rxjs": "^7.8.0",
"supertest": "^7.0.0"
},
"peerDependenciesMeta": {
"express-openid-connect": {
"optional": true
}
},
"dependencies": {
"@spuxx/js-utils": "workspace:@spuxx/js-utils@*"
},
"devDependencies": {
"@rollup/plugin-node-resolve": "15.2.3",
"sequelize": "6.37.5",
"sequelize-typescript": "2.1.6",
"sqlite3": "5.1.7"
}
}