-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
70 lines (70 loc) · 1.98 KB
/
Copy pathpackage.json
File metadata and controls
70 lines (70 loc) · 1.98 KB
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
{
"name": "nestjs-dev-utilities",
"description": "NestJs utilities for development",
"version": "0.0.3",
"license": "MIT",
"author": "Louis Loo <louiskhenghao@gmail.com> (https://github.com/louiskhenghao)",
"homepage": "https://github.com/louiskhenghao/nestjs-dev-utilities#readme",
"keywords": [
"nestjs",
"typescript",
"utilities"
],
"private": false,
"main": "dist/index.js",
"source": "src/index.js",
"scripts": {
"build": "tsc -p tsconfig.json",
"watch": "concurrently \"tsc -w -p tsconfig.json\"",
"clean": "rimraf dist",
"eslint": "eslint . --ext .ts,.tsx",
"eslint-fix": "eslint --fix . --ext .ts,.tsx",
"prettier": "prettier --write .",
"cz": "git-cz",
"prepare": "husky install",
"prepublish": "npm run build"
},
"config": {
"commitizen": {
"path": "cz-conventional-changelog"
}
},
"lint-staged": {
"*.{ts,tsx}": [
"eslint --fix",
"git add"
]
},
"dependencies": {
"@nestjs/common": "^11.1.6",
"@nestjs/graphql": "^13.1.0",
"@ptc-org/nestjs-query-core": "^9.1.0",
"@ptc-org/nestjs-query-graphql": "^9.1.0",
"@supercharge/request-ip": "^1.2.0",
"bcrypt": "^6.0.0",
"class-transformer": "^0.5.1",
"class-validator": "^0.14.2",
"request-ip": "^3.3.0",
"typeorm": "^0.3.26"
},
"devDependencies": {
"@commitlint/cli": "^18.4.4",
"@commitlint/config-conventional": "^18.4.4",
"@commitlint/prompt": "^18.4.4",
"@typescript-eslint/eslint-plugin": "^5.60.1",
"@typescript-eslint/parser": "^5.60.1",
"commitizen": "^4.3.0",
"concurrently": "^5.3.0",
"cz-conventional-changelog": "^3.3.0",
"eslint": "^7.12.1",
"eslint-config-airbnb": "^18.2.0",
"eslint-config-airbnb-typescript": "^12.0.0",
"eslint-config-prettier": "^6.15.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-prettier": "^3.1.4",
"husky": "^8.0.3",
"lint-staged": "^15.2.0",
"prettier": "^2.1.2",
"typescript": "5.0.4"
}
}