-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
76 lines (76 loc) · 2.55 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
76
{
"name": "nest-typescript-starter",
"version": "1.0.0",
"description": "Nest TypeScript starter repository",
"license": "MIT",
"scripts": {
"prebuild": "rimraf dist",
"start": "nest start",
"build": "nest build",
"start:dev": "npm run start:hmr -- --watch",
"start:hmr": "nest build --webpack --webpackPath webpack-hmr.config.js",
"start:debug": "nest start --debug --watch",
"start:prod": "node dist/main",
"format": "prettier --write \"{src,apps,lib,test}/**/*.ts\"",
"lint": "eslint '{src,apps,libs,test}/**/*.ts' --fix",
"node:ts": "node -r dotenv/config -r ts-node/register",
"test": "npm run node:ts -- node_modules/.bin/jest",
"test:watch": "npm run test -- --watch",
"test:e2e": "npm run test -- --config './test/jest-e2e.config.js' --detectOpenHandles",
"test:e2e:watch": "npm run test:e2e -- --watch",
"test:cov": "npm run test -- --coverage",
"test:debug": "node --inspect-brk -r tsconfig-paths/register -r ts-node/register node_modules/.bin/jest --runInBand"
},
"dependencies": {
"@nestjs/common": "10.0.3",
"@nestjs/config": "^3.2.3",
"@nestjs/core": "10.0.3",
"@nestjs/jwt": "^10.2.0",
"@nestjs/mapped-types": "*",
"@nestjs/microservices": "^10.3.10",
"@nestjs/platform-express": "10.0.3",
"@nestjs/sequelize": "10.0.0",
"@nestjs/typeorm": "^10.0.2",
"class-transformer": "^0.5.1",
"class-validator": "^0.14.1",
"dotenv": "^16.4.5",
"ioredis": "^5.4.1",
"mysql2": "3.4.3",
"nestjs-i18n": "^10.4.5",
"nestjs-typeorm-paginate": "^4.0.4",
"redis": "^4.6.15",
"reflect-metadata": "0.1.13",
"rimraf": "5.0.1",
"run-script-webpack-plugin": "^0.2.0",
"rxjs": "7.8.1",
"sequelize": "6.32.1",
"sequelize-typescript": "2.1.5",
"typeorm": "^0.3.20",
"typescript": "5.1.6",
"webpack": "^5.97.1",
"webpack-node-externals": "^3.0.0"
},
"devDependencies": {
"@nestjs/cli": "10.0.5",
"@nestjs/schematics": "10.0.1",
"@nestjs/testing": "10.0.3",
"@types/express": "4.17.17",
"@types/jest": "^29.5.3",
"@types/node": "20.3.3",
"@types/supertest": "2.0.12",
"@typescript-eslint/eslint-plugin": "5.60.1",
"@typescript-eslint/parser": "5.60.1",
"eslint": "8.42.0",
"eslint-config-prettier": "8.8.0",
"eslint-plugin-import": "2.27.5",
"jest": "29.6.1",
"prettier": "2.8.8",
"source-map-support": "^0.5.20",
"supertest": "6.3.3",
"ts-jest": "29.1.1",
"ts-loader": "9.4.4",
"ts-node": "10.9.1",
"tsconfig-paths": "4.2.0",
"typescript": "5.1.6"
}
}