-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
60 lines (60 loc) · 1.86 KB
/
Copy pathpackage.json
File metadata and controls
60 lines (60 loc) · 1.86 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
{
"name": "@street-devs/nest-notifications",
"version": "1.0.0",
"description": "A simple and lightweight package provides support for sending notifications across a variety of delivery channels",
"author": "duysolo <duypt.dev@gmail.com>",
"repository": {
"type": "git",
"url": "git+https://github.com/street-devs/nest-notifications.git"
},
"keywords": [
"street-devs",
"notifications",
"nestjs notifications"
],
"main": "dist/index.js",
"typings": "dist/index.d.ts",
"private": false,
"license": "MIT",
"scripts": {
"prebuild": "rimraf dist",
"dev": "npm run prebuild && tsc --build tsconfig.json",
"build": "npm run prebuild && tsc --build tsconfig.build.json",
"format": "prettier --write \"src/**/*.ts\" \"test/**/*.ts\"",
"lint": "eslint \"{src,apps,libs,test}/**/*.ts\" --fix",
"increase-version": "node scripts/increase-version.js"
},
"devDependencies": {
"@nestjs/core": "^10.2.3",
"@nestjs/common": "^10.2.3",
"@nestjs/cli": "^10.1.16",
"@nestjs/schematics": "^10.0.2",
"@nestjs/testing": "^10.2.3",
"@rushstack/eslint-config": "^3.3.3",
"@types/jest": "^29.5.4",
"@types/node": "^20.5.7",
"@types/supertest": "^2.0.12",
"reflect-metadata": "^0.1.13",
"eslint": "^8.48.0",
"jest": "^29.6.4",
"prettier": "^3.0.3",
"supertest": "^6.3.3",
"ts-jest": "^29.1.1",
"ts-node": "^10.9.1",
"typescript": "^5.2.2",
"rimraf": "^5.0.1"
},
"peerDependencies": {
"@nestjs/core": "^10.0.0 || ^9.0.0 || ^8.0.0 || ^7.0.0",
"@nestjs/common": "^10.0.0 || ^9.0.0 || ^8.0.0 || ^7.0.0",
"reflect-metadata": "^0.1.13"
},
"peerDependenciesMeta": {},
"bugs": {
"url": "https://github.com/street-devs/nest-notifications/issues"
},
"homepage": "https://github.com/street-devs/nest-notifications#readme",
"directories": {
"test": "test"
}
}