-
Notifications
You must be signed in to change notification settings - Fork 44
/
Copy pathpackage.json
70 lines (70 loc) · 2.21 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
{
"name": "@nestjs/azure-func-http",
"version": "0.10.0",
"description": "Nest - modern, fast, powerful node.js web framework (@azure-func-http)",
"author": "Kamil Mysliwiec",
"license": "MIT",
"scripts": {
"build": "npm run build:lib && npm run build:schematics",
"build:lib": "tsc -p tsconfig.json",
"build:schematics": "tsc -p tsconfig.schematics.json",
"lint": "eslint --ext ts --fix lib",
"format": "prettier --write \"lib/**/*.ts\"",
"precommit": "lint-staged",
"prepublish:npm": "npm run build",
"publish:npm": "npm publish --access public",
"prepublish:next": "npm run build",
"publish:next": "npm publish --access public --tag next",
"prerelease": "npm run build",
"release": "release-it",
"test": "jest -w 1 --no-cache --config jest.json",
"test:dev": "NODE_ENV=test npm run -s test -- --watchAll"
},
"peerDependencies": {
"@azure/functions": "^1.0.3 || ^2.0.0 || ^3.0.0",
"@nestjs/common": "^6.0.0 || ^7.0.0 || ^8.0.0 || ^9.0.0 || ^10.0.0",
"@nestjs/core": "^6.0.0 || ^7.0.0 || ^8.0.0 || ^9.0.0 || ^10.0.0",
"reflect-metadata": "^0.1.13"
},
"devDependencies": {
"@angular-devkit/schematics": "^16.0.0",
"@azure/functions": "3.5.1",
"@commitlint/cli": "19.6.1",
"@commitlint/config-angular": "19.7.0",
"@nestjs/common": "10.2.7",
"@nestjs/core": "10.2.7",
"@nestjs/schematics": "10.0.2",
"@types/node": "22.10.7",
"@types/jest": "29.5.14",
"@typescript-eslint/eslint-plugin": "7.18.0",
"@typescript-eslint/parser": "7.18.0",
"@schematics/angular": "16.2.16",
"eslint": "8.57.1",
"eslint-config-prettier": "10.0.1",
"eslint-plugin-import": "2.31.0",
"husky": "9.1.7",
"lint-staged": "15.4.1",
"prettier": "3.4.2",
"release-it": "17.1.1",
"typescript": "5.7.3",
"jest": "29.7.0",
"ts-jest": "29.2.5"
},
"dependencies": {
"cors": "2.8.5",
"jsonc-parser": "^3.2.0",
"trouter": "3.2.1"
},
"schematics": "./schematics/collection.json",
"lint-staged": {
"*.ts": [
"prettier --write"
]
},
"husky": {
"hooks": {
"pre-commit": "lint-staged",
"commit-msg": "commitlint -c .commitlintrc.json -E HUSKY_GIT_PARAMS"
}
}
}