-
-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 987 Bytes
/
package.json
File metadata and controls
38 lines (38 loc) · 987 Bytes
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
{
"name": "@nbw/database",
"main": "dist/index.js",
"module": "dist/index.js",
"types": "dist/index.d.ts",
"type": "module",
"private": true,
"exports": {
".": {
"import": "./dist/index.js",
"types": "./dist/index.d.ts"
}
},
"scripts": {
"build": "bun run clean && bun run build:js && bun run build:types",
"build:js": "tsc --project tsconfig.build.json",
"build:types": "tsc --project tsconfig.types.json",
"clean": "rm -rf dist",
"dev": "tsc --project tsconfig.build.json --watch",
"lint": "eslint \"src/**/*.ts\" --fix",
"test": "bun test **/*.spec.ts"
},
"devDependencies": {
"@types/bun": "^1.3.4",
"typescript": "^5.9.3"
},
"dependencies": {
"@nestjs/common": "^11.1.9",
"@nestjs/mongoose": "^10.1.0",
"@nestjs/swagger": "^11.2.3",
"mongoose": "^9.0.1",
"@nbw/config": "workspace:*",
"@nbw/validation": "workspace:*"
},
"peerDependencies": {
"typescript": "^5"
}
}