-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
60 lines (60 loc) · 1.32 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
{
"name": "@twirelab/nestjs-expo-notifications",
"version": "0.3.0",
"description": "Injectable Expo Notifications client for Nestjs",
"author": {
"name": "Twirelab",
"email": "[email protected]"
},
"private": false,
"repository": {
"url": "https://github.com/LukaszLupa/nestjs-expo-notifications",
"type": "git"
},
"keywords": [
"nestjs",
"expo",
"notifications",
"mobile",
"app",
"client",
"sdk",
"typescript",
"nestjs-expo-notifications",
"expo-server-sdk"
],
"scripts": {
"clean": "rimraf dist",
"build": "tsc -p tsconfig.json",
"test": "jest --verbose"
},
"bugs": {
"url": "https://github.com/Twirelab/nestjs-expo-notifications/issues"
},
"main": "lib/index.js",
"types": "lib/index.d.ts",
"files": [
"lib/**/*"
],
"license": "MIT",
"peerDependencies": {
"@nestjs/common": "^8.0.0",
"@nestjs/core": "^8.0.0",
"expo-server-sdk": "^3.6.0"
},
"dependencies": {
"reflect-metadata": "^0.1.13",
"rxjs": "^7.5.5"
},
"devDependencies": {
"@nestjs/common": "^8.4.4",
"@nestjs/core": "^8.4.4",
"@nestjs/testing": "^8.4.5",
"@types/jest": "^27.5.1",
"@types/node": "^17.0.33",
"expo-server-sdk": "^3.6.0",
"jest": "^28.1.0",
"ts-jest": "^28.0.2",
"typescript": "^4.6.4"
}
}