-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
57 lines (57 loc) · 1.69 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
{
"name": "@dynamic-quants/hexon",
"description": "Hexon is a powerful backend library with features for clean architecture and domain-driven design",
"version": "0.0.0",
"type": "commonjs",
"main": "./src/index.js",
"types": "./src/index.d.ts",
"scripts": {
"clean": "rimraf dist",
"copy": "copyfiles -f README.md package.json dist",
"build": "pnpm clean && nest build -p tsconfig.lib.json && pnpm copy",
"lint": "eslint \"{src,tests}/**/*.{ts,json}\" --fix",
"lint-check": "eslint \"{src,tests}/**/*.{ts,json}\"",
"test": "jest --verbose",
"test-watch": "jest --watch",
"test-cov": "jest --coverage",
"format": "prettier --write \"src/**/*.ts\" \"tests/**/*.ts\"",
"format-check": "prettier --check \"src/**/*.ts\" \"tests/**/*.ts\"",
"install": "pnpm config-tools setup"
},
"dependencies": {
"@nestjs/common": "^10.0.0",
"@nestjs/core": "^10.0.0",
"effect": "3.6.1",
"nanoid": "^5.0.7",
"ulid": "^2.3.0",
"uuid": "^10.0.0",
"zod": "^3.24.1"
},
"devDependencies": {
"@changesets/cli": "^2.27.11",
"@dynamic-quants/config-tools": "^3.0.18",
"@nestjs/cli": "^10.4.8",
"@nestjs/schematics": "^10.2.3",
"@nestjs/testing": "^10.4.12",
"@swc/jest": "~0.2.36",
"@types/express": "^5.0.0",
"@types/jest": "^29.5.14",
"@types/node": "^22.10.1",
"@types/supertest": "^6.0.2",
"@types/uuid": "^10.0.0",
"copyfiles": "^2.4.1",
"jest": "^29.7.0",
"rimraf": "^6.0.1",
"supertest": "^7.0.0",
"tslib": "^2.8.1",
"typescript": "~5.6.3"
},
"config-tools": {
"target": "nestjs",
"type": "lib"
},
"packageManager": "pnpm@9.15.2",
"engines": {
"node": "^20.18.1"
}
}