-
Notifications
You must be signed in to change notification settings - Fork 230
/
package.json
110 lines (110 loc) · 3.41 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
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
{
"name": "nestjs-project-structure",
"version": "0.0.0",
"description": "Node.js framework NestJS project structure",
"main": "dist/app",
"engines": {
"node": ">=20"
},
"scripts": {
"lint": "eslint --ext .ts .",
"lint:fix": "eslint --fix --ext .ts .",
"format": "prettier --write \"src/**/*.ts\" \"test/**/*.ts\"",
"entity:load": "ts-node bin/entity",
"entity:sync": "typeorm-ts-node-commonjs -d bin/ormconfig.ts schema:sync",
"build": "nest build",
"prestart": "npm run lint && npm run build",
"start": "node dist/app",
"start:dev": "nest start --watch",
"start:debug": "nest start --debug --watch",
"start:repl": "nest start --entryFile repl",
"test": "jest --detectOpenHandles -i",
"test:e2e": "jest --config ./test/jest.e2e.ts -i",
"doc": "compodoc -p tsconfig.json -s -d docs",
"doc:api": "npm run build && node dist/swagger"
},
"dependencies": {
"@apollo/server": "^4.11.2",
"@nestjs/apollo": "^12.2.1",
"@nestjs/axios": "^3.1.2",
"@nestjs/common": "^10.4.8",
"@nestjs/config": "^3.3.0",
"@nestjs/core": "^10.4.8",
"@nestjs/graphql": "^12.2.1",
"@nestjs/jwt": "^10.2.0",
"@nestjs/mapped-types": "^2.0.6",
"@nestjs/passport": "^10.0.3",
"@nestjs/platform-express": "^10.4.8",
"@nestjs/serve-static": "^4.0.2",
"@nestjs/swagger": "^8.0.7",
"@nestjs/terminus": "^10.2.3",
"@nestjs/typeorm": "^10.0.2",
"axios": "^1.7.7",
"class-transformer": "^0.5.1",
"class-validator": "^0.14.1",
"compression": "^1.7.5",
"express-session": "^1.18.1",
"graphql": "^16.9.0",
"helmet": "^8.0.0",
"mysql2": "^3.11.4",
"nanoid": "^3.3.6",
"nestjs-pino": "^4.1.0",
"passport": "^0.7.0",
"passport-jwt": "^4.0.1",
"passport-local": "^1.0.0",
"pino": "^9.5.0",
"pino-http": "^10.3.0",
"reflect-metadata": "^0.2.2",
"rxjs": "^7.8.1",
"typeorm": "^0.3.20"
},
"devDependencies": {
"@compodoc/compodoc": "^1.1.26",
"@nestjs/cli": "^10.4.8",
"@nestjs/testing": "^10.4.8",
"@types/compression": "^1.7.5",
"@types/express": "^4.17.21",
"@types/express-session": "^1.18.0",
"@types/jest": "^29.5.14",
"@types/node": "^20.17.6",
"@types/passport": "^1.0.17",
"@types/passport-jwt": "^4.0.1",
"@types/passport-local": "^1.0.38",
"@types/prompts": "^2.4.9",
"@types/supertest": "^6.0.2",
"@typescript-eslint/eslint-plugin": "^7.18.0",
"@typescript-eslint/parser": "^7.18.0",
"esbuild": "^0.24.0",
"eslint": "^8.57.1",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-airbnb-typescript": "^18.0.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-jest": "^28.9.0",
"eslint-plugin-prettier": "^5.2.1",
"eslint-plugin-sonarjs": "^2.0.4",
"jest": "^29.7.0",
"jest-mock-extended": "^3.0.7",
"pino-pretty": "^13.0.0",
"prettier": "^3.3.3",
"prompts": "^2.4.2",
"rimraf": "^6.0.1",
"supertest": "^7.0.0",
"ts-jest": "^29.2.5",
"ts-node": "^10.9.2",
"typeorm-model-generator": "^0.4.6-no-engines",
"typescript": "~5.5.4"
},
"repository": {
"type": "git",
"url": "https://github.com/CatsMiaow/nestjs-project-structure.git"
},
"keywords": [
"Node.js",
"NestJS",
"TypeScript"
],
"homepage": "https://github.com/CatsMiaow/nestjs-project-structure#readme",
"author": "CatsMiaow",
"license": "MIT"
}