-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
75 lines (75 loc) · 1.87 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
{
"name": "@spuxx/nest-utils",
"version": "4.0.0",
"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/spuxx-dev/jslibs"
},
"homepage": "https://github.com/spuxx-dev/jslibs/blob/main/packages/nest-utils/README.md",
"bugs": {
"url": "https://github.com/spuxx-dev/jslibs/issues"
},
"type": "module",
"main": "dist/main.js",
"module": "dist/main.js",
"types": "dist/main.d.ts",
"exports": {
".": {
"types": "./dist/main.d.ts",
"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",
"test": "pnpm run test:vitest",
"test:vitest": "vitest run --coverage"
},
"peerDependencies": {
"@nestjs/common": "^11.0.0",
"@nestjs/core": "^11.0.0",
"@nestjs/swagger": "^11.0.0",
"@spuxx/js-utils": "^1.3.0",
"class-transformer": "^0.5.0",
"class-validator": "^0.14.0",
"dotenv": "^16.0.0",
"reflect-metadata": "^0.2.2",
"rxjs": "^7.8.0"
},
"devDependencies": {
"@rollup/plugin-node-resolve": "16.0.1",
"@spuxx/js-utils": "1.3.0",
"@spuxx/nest-testing": "workspace:@spuxx/nest-testing@*",
"@types/dotenv": "8.2.3",
"@types/express": "5.0.0",
"@vitest/coverage-v8": "3.0.8",
"dotenv": "16.4.7",
"sequelize": "6.37.6",
"sequelize-typescript": "2.1.6",
"sqlite3": "5.1.7",
"typescript": "5.8.2",
"unplugin-swc": "1.5.1",
"vite": "6.2.1",
"vite-plugin-dts": "4.5.3",
"vite-tsconfig-paths": "5.1.4",
"vitest": "3.0.9"
}
}