generated from fdorantesm/nestjs-dynamic-module-template
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
56 lines (56 loc) · 1.51 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
{
"name": "nestjs-elastic-transcoder",
"version": "1.0.1",
"private": false,
"description": "A NestJS module for AWS Elastic Transcoder",
"author": "Fernando Dorantes",
"license": "MIT",
"homepage": "https://github.com/fdorantesm/nestjs-elastic-transcoder",
"keywords": [
"aws",
"elastric-transcoder",
"video",
"transcoder",
"aws-sdk",
"client-elastic-transcoder"
],
"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"
},
"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}": []
},
"dependencies": {
"@aws-sdk/client-elastic-transcoder": "^3.292.0"
}
}