generated from fdorantesm/nestjs-dynamic-module-template
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
62 lines (62 loc) · 1.48 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
{
"name": "nestjs-polly",
"version": "1.1.0",
"description": "AWS Polly module for NestJS",
"author": "Fernando Dorantes <[email protected]>",
"main": "dist/index.js",
"license": "MIT",
"keywords": [
"nest",
"nestjs",
"aws",
"polly",
"voice",
"speech",
"talk",
"tell",
"conversation",
"speak"
],
"files": [
"dist",
"index.js",
"index.d.ts"
],
"scripts": {
"lint": "eslint \"lib/**/*.ts\" --fix",
"format": "prettier \"lib/**/*.ts\" --write",
"build": "rimraf -rf dist && tsc -p tsconfig.json",
"precommit": "lint-staged",
"prepublish:npm": "npm run build",
"publish:npm": "npm publish --access public",
"prerelease": "npm run build",
"release": "release-it",
"prepare": "husky install"
},
"peerDependencies": {
"@nestjs/common": "^8.0.0 || ^9.0.0",
"rxjs": "^7.2.0",
"@aws-sdk/client-polly": "^3.306.0"
},
"devDependencies": {
"@commitlint/cli": "17.4.4",
"@commitlint/config-angular": "17.4.4",
"@nestjs/common": "9.3.10",
"@types/node": "18.15.3",
"@typescript-eslint/eslint-plugin": "5.55.0",
"@typescript-eslint/parser": "5.55.0",
"eslint": "8.36.0",
"eslint-config-prettier": "8.7.0",
"eslint-plugin-import": "2.27.5",
"husky": "8.0.3",
"lint-staged": "13.2.0",
"prettier": "2.8.4",
"release-it": "15.8.0",
"rimraf": "4.4.0",
"rxjs": "7.8.0",
"typescript": "4.9.5"
},
"lint-staged": {
"**/*.{ts,json}": []
}
}