-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
89 lines (89 loc) · 2.94 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
{
"name": "nestjs-clean-example",
"version": "0.1.0",
"private": true,
"description": "Example Application Interface using NestJS framework in TypeScript",
"bugs": {
"url": "https://github.com/0xTheProDev/nestjs-clean-example/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/0xTheProDev/nestjs-clean-example"
},
"license": "MIT",
"author": {
"name": "Progyan Bhattacharya",
"email": "[email protected]"
},
"scripts": {
"prebuild": "rimraf dist",
"build": "nest build",
"format": "prettier --write \"src/**/*.ts\" \"test/**/*.ts\"",
"postinstall": "husky install",
"lint": "eslint \"{src,apps,libs,test}/**/*.ts\" --fix",
"start": "nest start",
"start:debug": "nest start --debug --watch",
"start:dev": "nest start --watch",
"start:prod": "node dist/main",
"test": "cross-env TEST_ENV=true jest --colors --detectOpenHandles",
"test:ci": "cross-env CI=true yarn test --ci --silent --forceExit --watchAll=false",
"test:debug": "node --inspect-brk -r tsconfig-paths/register -r ts-node/register node_modules/.bin/jest --runInBand",
"test:e2e": "jest --config jest.e2e.config.ts --colors --detectOpenHandles --runInBand",
"test:e2e:ci": "cross-env CI=true yarn test:e2e --ci --silent --forceExit --watchAll=false",
"test:watch": "jest --watch"
},
"dependencies": {
"@nestjs/apollo": "10.0.16",
"@nestjs/common": "8.4.7",
"@nestjs/config": "2.1.0",
"@nestjs/core": "8.4.7",
"@nestjs/graphql": "10.0.16",
"@nestjs/platform-fastify": "8.4.7",
"@nestjs/swagger": "5.2.1",
"@nestjs/typeorm": "8.1.4",
"apollo-server-fastify": "3.9.0",
"class-transformer": "0.5.1",
"class-validator": "0.13.2",
"fastify-swagger": "5.2.0",
"graphql": "16.5.0",
"mysql2": "2.3.3",
"reflect-metadata": "0.1.13",
"rxjs": "7.5.5",
"typeorm": "0.3.6"
},
"devDependencies": {
"@faker-js/faker": "7.3.0",
"@golevelup/ts-jest": "0.3.3",
"@nestjs/cli": "8.2.8",
"@nestjs/schematics": "8.0.11",
"@nestjs/testing": "8.4.7",
"@types/jest": "28.1.3",
"@types/lodash.once": "4.1.7",
"@types/node": "18.0.0",
"@types/supertest": "2.0.12",
"@typescript-eslint/eslint-plugin": "5.29.0",
"@typescript-eslint/parser": "5.29.0",
"check-yarn-lock": "0.2.1",
"cross-env": "7.0.3",
"eslint": "8.18.0",
"eslint-config-prettier": "8.5.0",
"eslint-import-resolver-typescript": "3.1.1",
"eslint-plugin-import": "2.26.0",
"eslint-plugin-prettier": "4.0.0",
"eslint-plugin-unused-imports": "2.0.0",
"husky": "8.0.1",
"jest": "28.1.1",
"lint-staged": "13.0.3",
"lodash.once": "4.1.1",
"prettier": "2.7.1",
"rimraf": "3.0.2",
"sort-package-json": "1.57.0",
"source-map-support": "0.5.21",
"supertest": "6.2.3",
"ts-jest": "28.0.5",
"ts-loader": "9.3.1",
"ts-node": "10.8.1",
"tsconfig-paths": "4.0.0",
"typescript": "4.7.4"
}
}