-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
83 lines (83 loc) · 2.83 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
{
"name": "nest-starter",
"version": "0.0.1",
"description": "",
"author": "",
"private": true,
"license": "UNLICENSED",
"scripts": {
"build": "nest build",
"build:image": "docker build . -t ghcr.io/bryopsida/nestjs-starter:local",
"build:docs": "npx @compodoc/compodoc -p tsconfig.json -d docs",
"minikube:start": "minikube start --memory=4192m --disk-size=8g --cpus=2 --addons=[ingress,storage-provisioner,default-storageclass,metrics-server]",
"minikube:stop": "minikube stop",
"minikube:delete": "minikube delete",
"minikube:copyImage": "minikube image load ghcr.io/bryopsida/nestjs-starter:local",
"helm:template": "helm template nestjs-starter ./charts/nestjs-starter/",
"helm:deploy": "helm upgrade --install nestjs-starter ./charts/nestjs-starter/ --set image.tag=local --set image.pullPolicy=IfNotPresent --debug --wait",
"helm:test": "helm test nestjs-starter",
"helm:uninstall": "helm del nestjs-starter",
"start": "nest start",
"start:dev": "nest start --watch | pino-pretty",
"test": "jest --coverage",
"lint": "eslint --ext .ts src/ && prettier --check .",
"lint:fix": "eslint --ext .ts src/ --fix && prettier --write .",
"postman": "newman run './charts/nestjs-starter/postman/Nest.JS-Starter.postman_collection.json' -e './charts/nestjs-starter/postman/Nest.JS-Starter.postman_environment.json'"
},
"dependencies": {
"@nestjs/common": "^10.0.0",
"@nestjs/config": "^4.0.0",
"@nestjs/core": "^10.0.0",
"@nestjs/platform-express": "^10.0.0",
"@nestjs/swagger": "^8.0.0",
"@nestjs/terminus": "^10.0.1",
"helmet": "^8.0.0",
"nestjs-pino": "^4.0.0",
"pino-http": "^10.0.0",
"reflect-metadata": "^0.2.0",
"rxjs": "^7.2.0"
},
"devDependencies": {
"@compodoc/compodoc": "^1.1.21",
"@nestjs/cli": "^10.0.0",
"@nestjs/schematics": "^10.0.0",
"@nestjs/testing": "^10.0.0",
"@types/express": "^5.0.0",
"@types/jest": "29.5.14",
"@types/node": "22.13.1",
"@types/supertest": "^6.0.0",
"@typescript-eslint/eslint-plugin": "^8.0.0",
"@typescript-eslint/parser": "^8.0.0",
"eslint": "^8.30.0",
"eslint-config-prettier": "^10.0.0",
"eslint-config-standard": "^17.1.0",
"jest": "29.7.0",
"newman": "^6.0.0",
"pino-pretty": "^13.0.0",
"prettier": "^3.0.0",
"source-map-support": "^0.5.20",
"supertest": "^7.0.0",
"ts-jest": "29.2.5",
"ts-loader": "^9.2.3",
"ts-node": "^10.0.0",
"tsconfig-paths": "4.2.0",
"typescript": "^5.0.0"
},
"jest": {
"moduleFileExtensions": [
"js",
"json",
"ts"
],
"rootDir": "src",
"testRegex": ".*\\.spec\\.ts$",
"transform": {
"^.+\\.(t|j)s$": "ts-jest"
},
"collectCoverageFrom": [
"**/*.(t|j)s"
],
"coverageDirectory": "../coverage",
"testEnvironment": "node"
}
}