-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
80 lines (80 loc) · 2.5 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
{
"name": "nest-boilerplate",
"version": "0.0.0",
"private": true,
"description": "Nest boilerplate",
"license": "UNLICENSED",
"author": "Samuel MARLHENS",
"scripts": {
"prebuild": "rimraf dist",
"build": "nest build",
"eslint:check": "eslint \"{src,apps,libs,test}/**/*.ts\"",
"eslint:fix": "npm run eslint:check -- --fix",
"lint": "npm run eslint:check && npm run prettier:check",
"precommit": "lint-staged && npm run lint && npm run test",
"prepare": "husky install",
"prepush": "npm run test",
"prettier:check": "prettier --check ./**/*.{ts,js,json,*rc}",
"prettier:write": "prettier --write ./**/*.{ts,js,json,*rc}",
"sort-package-json": "npx sort-package-json",
"start": "nest start",
"start:debug": "nest start --debug --watch",
"start:dev": "nest start --watch",
"start:prod": "node dist/main",
"test": "jest",
"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",
"test:watch": "jest --watch"
},
"dependencies": {
"@nestjs/common": "9.0.11",
"@nestjs/config": "2.2.0",
"@nestjs/core": "9.0.11",
"@nestjs/platform-express": "9.0.11",
"@nestjs/swagger": "6.0.5",
"@nestjs/typeorm": "9.0.1",
"joi": "17.6.0",
"pg": "8.7.3",
"reflect-metadata": "0.1.13",
"rimraf": "3.0.2",
"rxjs": "7.5.6",
"typeorm": "0.3.9"
},
"devDependencies": {
"@commitlint/cli": "17.1.2",
"@commitlint/config-conventional": "17.1.0",
"@nestjs/cli": "9.1.1",
"@nestjs/schematics": "9.0.1",
"@nestjs/testing": "9.0.11",
"@types/express": "4.17.13",
"@types/jest": "28.1.8",
"@types/node": "18.0.6",
"@types/supertest": "2.0.12",
"@typescript-eslint/eslint-plugin": "5.35.1",
"@typescript-eslint/parser": "5.35.1",
"commitizen": "4.2.5",
"cz-conventional-changelog": "3.3.0",
"eslint": "8.23.0",
"eslint-config-prettier": "8.5.0",
"eslint-plugin-import": "2.26.0",
"husky": "8.0.1",
"jest": "28.1.3",
"lint-staged": "13.0.3",
"prettier": "2.7.1",
"supertest": "6.2.4",
"ts-jest": "28.0.8",
"ts-loader": "9.3.1",
"ts-node": "10.9.1",
"tsconfig-paths": "3.14.1",
"typescript": "4.8.2"
},
"optionalDependencies": {
"fsevents": "2.3.2"
},
"engines": {
"node": "^14.17.0 || ^16.10.0 || ^18.0.0",
"npm": "^6.14.13 || ^7.5.6 || >=8.0.0",
"yarn": ">=1.13.0"
}
}