-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
53 lines (53 loc) · 1.43 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
{
"name": "nestjs-agenda-module",
"version": "2.0.0",
"description": "Agenda module for NestJs",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"scripts": {
"prepare": "husky install && npm run build",
"prepublishOnly": "npm run lint",
"preversion": "npm run lint",
"version": "npm run format && git add -A src",
"postversion": "git push && git push --tags",
"prebuild": "rimraf dist",
"build": "tsc",
"format": "prettier --write \"src/**/*.ts\"",
"lint": "eslint \"{src,apps,libs,test}/**/*.ts\" --fix"
},
"author": "nikyoff",
"license": "ISC",
"homepage": "https://github.com/NikyOFF/nestjs-agenda#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/NikyOFF/nestjs-agenda.git"
},
"bugs": {
"url": "https://github.com/NikyOFF/nestjs-agenda/issues"
},
"keywords": [
"nestjs",
"agenda"
],
"“files": [
"lib/**/*"
],
"dependencies": {
"@nestjs/common": "^10.1.3",
"@nestjs/core": "^10.1.3",
"agenda": "^5.0.0"
},
"devDependencies": {
"@commitlint/cli": "^17.4.1",
"@commitlint/config-conventional": "^17.4.0",
"@typescript-eslint/eslint-plugin": "^5.48.1",
"@typescript-eslint/parser": "^5.48.1",
"eslint": "^8.31.0",
"eslint-config-prettier": "^8.6.0",
"eslint-plugin-prettier": "^4.2.1",
"husky": "^8.0.3",
"prettier": "^2.8.2",
"rimraf": "^3.0.2",
"typescript": "^4.9.4"
}
}