-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
48 lines (48 loc) · 1.39 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
{
"name": "better-nodejs-project",
"version": "0.0.0",
"description": "Ways for a better Node.js backend project",
"type": "module",
"main": "dist/app",
"engines": {
"node": ">=18"
},
"scripts": {
"lint": "eslint --ext .ts .",
"build": "nest build",
"prepare": "husky install",
"prestart": "npm run lint && npm run build",
"start": "node dist/app",
"start:dev": "nest start --watch",
"start:debug": "nest start --debug --watch",
"release": "standard-version"
},
"dependencies": {
"@nestjs/common": "^10.2.6",
"@nestjs/core": "^10.2.6",
"@nestjs/platform-express": "^10.2.6",
"reflect-metadata": "^0.1.13",
"rxjs": "^7.8.1"
},
"devDependencies": {
"@commitlint/cli": "^17.7.1",
"@commitlint/config-conventional": "^17.7.0",
"@nestjs/cli": "^10.1.18",
"@types/node": "^18.17.19",
"@typescript-eslint/eslint-plugin": "^6.7.2",
"@typescript-eslint/parser": "^6.7.2",
"eslint": "^8.50.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-airbnb-typescript": "^17.1.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-import": "^2.28.1",
"eslint-plugin-prettier": "^5.0.0",
"eslint-plugin-sonarjs": "^0.21.0",
"eslint-plugin-unicorn": "^48.0.1",
"husky": "^8.0.3",
"standard-version": "^9.5.0",
"typescript": "^5.2.2"
},
"author": "CatsMiaow",
"license": "UNLICENSED"
}