forked from Twirelab/nestjs-expo-notifications
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
63 lines (63 loc) · 1.53 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
63
{
"name": "nestjs-expo-notifications",
"version": "0.2.0",
"description": "Injectable Expo Notifications client for Nestjs",
"author": "Lukasz Lupa",
"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": {
"prebuild": "rimraf dist",
"build": "tsc -p tsconfig.json"
},
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist/**/*"
],
"license": "MIT",
"devDependencies": {
"@nestjs/cli": "^7.5.1",
"@nestjs/common": "^7.5.1",
"@nestjs/core": "^7.5.1",
"@nestjs/schematics": "^7.1.3",
"@nestjs/testing": "^7.5.1",
"@types/express": "^4.17.8",
"@types/jest": "^26.0.15",
"@types/node": "^14.14.6",
"@types/supertest": "^2.0.10",
"@typescript-eslint/eslint-plugin": "^4.6.1",
"@typescript-eslint/parser": "^4.6.1",
"eslint": "^7.12.1",
"eslint-config-prettier": "^6.15.0",
"eslint-plugin-prettier": "^3.1.4",
"jest": "^26.6.3",
"prettier": "^2.1.2",
"supertest": "^6.0.0",
"ts-jest": "^26.4.3",
"ts-loader": "^8.0.8",
"ts-node": "^9.0.0",
"tsconfig-paths": "^3.9.0",
"typescript": "^4.0.5",
"expo-server-sdk": "^3.6.0"
},
"peerDependencies": {
"@nestjs/common": "^7.0.0",
"@nestjs/core": "^7.0.0",
"expo-server-sdk": "^3.0.0"
}
}