forked from CatsMiaow/nestjs-project-structure
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
98 lines (98 loc) · 3.05 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
{
"name": "node-nestjs-structure",
"version": "0.0.0",
"description": "Node.js framework NestJS project structure",
"main": "dist/app",
"scripts": {
"lint": "eslint --ext .ts .",
"format": "prettier --write \"src/**/*.ts\" \"test/**/*.ts\"",
"entity": "node bin/entity",
"build": "rimraf dist && nest build",
"prestart": "npm run lint && npm run build",
"start": "node dist/app",
"start:dev": "rimraf dist && nest start --watch",
"start:debug": "rimraf dist && nest start --debug --watch",
"test": "jest --detectOpenHandles -i",
"test:e2e": "jest --config ./test/jest.e2e.js -i",
"doc": "compodoc -p tsconfig.json -s -d docs",
"doc:api": "npm run build && node dist/swagger"
},
"dependencies": {
"@nestjs/apollo": "^10.0.9",
"@nestjs/axios": "^0.0.7",
"@nestjs/common": "^8.4.4",
"@nestjs/config": "^2.0.0",
"@nestjs/core": "^8.4.4",
"@nestjs/graphql": "^10.0.9",
"@nestjs/jwt": "^8.0.0",
"@nestjs/mapped-types": "^1.0.1",
"@nestjs/passport": "^8.2.1",
"@nestjs/platform-express": "^8.4.4",
"@nestjs/serve-static": "^2.2.2",
"@nestjs/swagger": "^5.2.1",
"@nestjs/terminus": "^8.0.6",
"@nestjs/typeorm": "^8.0.3",
"apollo-server-express": "^3.6.7",
"class-transformer": "^0.5.1",
"class-validator": "^0.13.2",
"compression": "^1.7.4",
"express-session": "^1.17.2",
"graphql": "^16.3.0",
"graphql-tools": "^8.2.7",
"helmet": "^5.0.2",
"mysql2": "^2.3.3",
"nanoid": "^3.3.2",
"passport": "^0.5.2",
"passport-jwt": "^4.0.0",
"passport-local": "^1.0.0",
"pino": "^7.10.0",
"reflect-metadata": "^0.1.13",
"rxjs": "^7.5.5",
"swagger-ui-express": "^4.3.0",
"typeorm": "^0.3.6"
},
"devDependencies": {
"@compodoc/compodoc": "^1.1.19",
"@nestjs/cli": "^8.2.5",
"@nestjs/testing": "^8.4.4",
"@types/compression": "^1.7.2",
"@types/express": "^4.17.13",
"@types/express-session": "^1.17.4",
"@types/helmet": "0.0.48",
"@types/jest": "^27.4.1",
"@types/node": "^16.11.27",
"@types/passport-jwt": "^3.0.6",
"@types/passport-local": "^1.0.34",
"@types/supertest": "^2.0.12",
"@typescript-eslint/eslint-plugin": "^5.19.0",
"@typescript-eslint/parser": "^5.19.0",
"eslint": "^8.13.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-airbnb-typescript": "^17.0.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-jest": "^26.1.4",
"eslint-plugin-sonarjs": "^0.13.0",
"jest": "^27.5.1",
"pino-pretty": "^7.6.1",
"prettier": "^2.6.2",
"prompts": "^2.4.2",
"rimraf": "^3.0.2",
"shelljs": "^0.8.5",
"supertest": "^6.2.2",
"ts-jest": "^27.1.4",
"typeorm-model-generator": "^0.4.6-no-engines",
"typescript": "^4.6.3"
},
"repository": {
"type": "git",
"url": "https://github.com/CatsMiaow/node-nestjs-structure.git"
},
"keywords": [
"Node.js",
"NestJS",
"TypeScript"
],
"homepage": "https://github.com/CatsMiaow/node-nestjs-structure#readme",
"author": "CatsMiaow",
"license": "MIT"
}