forked from nestjs/azure-func-http
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
69 lines (69 loc) · 2.12 KB
/
package.json
File metadata and controls
69 lines (69 loc) · 2.12 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
{
"name": "@nestjs/azure-func-http",
"version": "0.8.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 || ^3.0.0",
"@nestjs/common": "^6.0.0 || ^7.0.0 || ^8.0.0",
"@nestjs/core": "^6.0.0 || ^7.0.0 || ^8.0.0",
"reflect-metadata": "^0.1.13"
},
"devDependencies": {
"@azure/functions": "3.5.0",
"@commitlint/cli": "17.4.2",
"@commitlint/config-angular": "17.4.2",
"@nestjs/common": "8.4.7",
"@nestjs/core": "8.4.7",
"@nestjs/schematics": "8.0.11",
"@types/node": "18.11.18",
"@typescript-eslint/eslint-plugin": "5.48.2",
"@typescript-eslint/parser": "5.48.2",
"eslint": "8.32.0",
"eslint-config-prettier": "8.6.0",
"eslint-plugin-import": "2.27.5",
"husky": "8.0.3",
"lint-staged": "13.1.0",
"prettier": "2.8.3",
"release-it": "15.6.0",
"typescript": "4.9.4"
},
"dependencies": {
"@angular-devkit/schematics": "12.2.16",
"@schematics/angular": "12.2.16",
"@types/jest": "26.0.24",
"cors": "2.8.5",
"jest": "27.5.1",
"trouter": "3.2.0",
"ts-jest": "27.0.4"
},
"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"
}
}
}