-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
88 lines (88 loc) · 2.54 KB
/
package.json
File metadata and controls
88 lines (88 loc) · 2.54 KB
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
82
83
84
85
86
87
88
{
"name": "nest-admin-serve",
"version": "0.0.1",
"private": true,
"description": "",
"author": "",
"license": "UNLICENSED",
"scripts": {
"build": "nest build",
"start": "cross-env ENVIRONMENT=development nest start",
"start:dev": "npm run start -- --debug --watch",
"start:prod": "cross-env ENVIRONMENT=production node dist/main",
"eslint": "ESLINT_USE_FLAT_CONFIG=true eslint \"{src,apps,libs,test}/**/*.ts\"",
"eslint:fix": "ESLINT_USE_FLAT_CONFIG=true eslint \"{src,apps,libs,test}/**/*.ts\" --fix",
"test": "jest",
"test:watch": "jest --watch",
"test:cov": "jest --coverage",
"test:debug": "node --inspect-brk -r tsconfig-paths/register -r ts-node/register node_modules/.bin/jest --runInBand",
"test:e2e": "jest --config ./test/jest-e2e.json",
"prepare": "husky"
},
"dependencies": {
"@nestjs/cache-manager": "^3.1.0",
"@nestjs/common": "^11.1.12",
"@nestjs/config": "^4.0.2",
"@nestjs/core": "^11.1.12",
"@nestjs/jwt": "^11.0.2",
"@nestjs/mapped-types": "^2.1.0",
"@nestjs/platform-express": "^11.1.12",
"@nestjs/swagger": "^11.2.5",
"@nestjs/typeorm": "^11.0.0",
"cache-manager": "^7.2.8",
"class-transformer": "^0.5.1",
"class-validator": "^0.14.3",
"ioredis": "^5.9.2",
"joi": "^18.0.2",
"js-yaml": "^4.1.1",
"mysql2": "^3.16.2",
"redis": "^5.10.0",
"reflect-metadata": "^0.2.2",
"rxjs": "^7.8.2",
"sqlite3": "^5.1.7",
"typeorm": "^0.3.28"
},
"devDependencies": {
"@antfu/eslint-config": "^7.2.0",
"@commitlint/cli": "^20.4.1",
"@commitlint/config-angular": "^20.4.1",
"@nestjs/cli": "^11.0.16",
"@nestjs/schematics": "^11.0.9",
"@nestjs/testing": "^11.1.12",
"@types/express": "^5.0.6",
"@types/jest": "^30.0.0",
"@types/joi": "^17.2.3",
"@types/js-yaml": "^4.0.9",
"@types/node": "^25.2.0",
"@types/supertest": "^6.0.3",
"cross-env": "^10.1.0",
"eslint": "^9.39.2",
"husky": "^9.1.7",
"jest": "^30.2.0",
"lint-staged": "^16.2.7",
"source-map-support": "^0.5.21",
"supertest": "^7.2.2",
"ts-jest": "^29.4.6",
"ts-loader": "^9.5.4",
"ts-node": "^10.9.2",
"tsconfig-paths": "^4.2.0",
"typescript": "^5.9.3"
},
"jest": {
"moduleFileExtensions": [
"js",
"json",
"ts"
],
"rootDir": "src",
"testRegex": ".*\\.spec\\.ts$",
"transform": {
"^.+\\.(t|j)s$": "ts-jest"
},
"collectCoverageFrom": [
"**/*.(t|j)s"
],
"coverageDirectory": "../coverage",
"testEnvironment": "node"
}
}