-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
56 lines (56 loc) · 1.6 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": "paysnap_backend",
"version": "1.0.0",
"description": "The server side that powers the payment service paysnap",
"main": "server.js",
"dependencies": {
"@axelspringer/graphql-google-pubsub": "^2.1.0",
"@google-cloud/pubsub": "^2.17.0",
"@graphql-tools/schema": "^8.2.0",
"@types/ioredis": "^4.27.2",
"apollo-server-express": "^3.3.0",
"bcryptjs": "^2.4.3",
"dotenv": "^10.0.0",
"express": "^4.17.1",
"graphql": "^15.5.2",
"graphql-redis-subscriptions": "^2.4.0",
"graphql-subscriptions": "^1.2.1",
"ioredis": "^4.27.9",
"jsonwebtoken": "^8.5.1",
"mailgun-js": "^0.6.7",
"nodemailer": "^6.6.3",
"pg": "^8.6.0",
"subscriptions-transport-ws": "^0.9.19",
"ws": "^8.2.1"
},
"devDependencies": {
"@types/bcryptjs": "^2.4.2",
"@types/dotenv": "^8.2.0",
"@types/graphql": "^14.5.0",
"@types/jsonwebtoken": "^8.5.4",
"@types/mailgun-js": "^0.22.12",
"@types/node": "^16.4.1",
"@types/nodemailer": "^6.4.4",
"@types/pg": "^8.6.1",
"@types/ws": "^7.4.7",
"nodemon": "^2.0.12",
"ts-node": "^10.1.0",
"typescript": "^4.3.5"
},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "node server.js",
"dev": "nodemon server.ts",
"build": "tsc -p ."
},
"repository": {
"type": "git",
"url": "git+https://github.com/biggaji/paysnap_backend.git"
},
"author": "Tobi Ajibade (CTO)",
"license": "ISC",
"bugs": {
"url": "https://github.com/biggaji/paysnap_backend/issues"
},
"homepage": "https://github.com/biggaji/paysnap_backend#readme"
}