-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
77 lines (77 loc) · 2.25 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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
{
"name": "push-delivery-node",
"version": "1.0.0",
"description": "PUSH Delivery Node",
"main": "src/app.ts",
"scripts": {
"build": "rimraf ./build && tsc",
"dev": "ts-node-dev --respawn --transpile-only ./src/app.ts",
"heroku-postbuild": "npm run build",
"start": "nodemon",
"inspect": "nodemon --inspect src/app.ts",
"test": "mocha -r ts-node/register \"tests/**/*.test.ts\" --timeout 12000 --require tests/root.ts --serial",
"test:coverage": "nyc npm run test --report-dir=./reporter",
"lint": "npm run lint:js ",
"lint:eslint": "eslint --ignore-path .gitignore --ext .ts",
"lint:js": "npm run lint:eslint src/",
"lint:fix": "npm run lint:js -- --fix"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ethereum-push-notification-service/push-delivery-node.git"
},
"keywords": [
"EPNS",
"Delivery",
"Notifications",
"Web",
"Mobile",
"Android",
"IOS",
"Browser",
"Web3",
"Blockchain",
"Ethereum"
],
"author": "Shoaib Mohammed",
"license": "UNLICENSED",
"bugs": {
"url": "https://github.com/ethereum-push-notification-service/push-delivery-node/issues"
},
"homepage": "https://github.com/ethereum-push-notification-service/push-delivery-node#readme",
"dependencies": {
"apn": "^2.2.0",
"celebrate": "^15.0.1",
"chalk": "^4.1.2",
"cors": "^2.8.5",
"crypto-js": "^4.1.1",
"dotenv": "^16.0.1",
"eccrypto": "^1.1.6",
"envfile": "^6.17.0",
"eth-crypto": "^2.3.0",
"ethereum-public-key-to-address": "0.0.5",
"express": "^4.18.1",
"firebase-admin": "^11.7.0",
"method-override": "^3.0.0",
"moment": "^2.29.4",
"mysql": "^2.18.1",
"node-schedule": "^2.1.0",
"pm2-logrotate-s3": "^3.0.3",
"redis": "^4.2.0",
"reflect-metadata": "^0.1.13",
"secp256k1-v4": "https://github.com/HarshRajat/secp256k1-node",
"socket.io-client": "^4.5.3",
"ts-node-dev": "^2.0.0",
"typedi": "^0.10.0",
"typescript": "^4.7.4",
"winston": "^3.8.1"
},
"devDependencies": {
"@types/express": "^4.17.13",
"@types/node": "^18.0.5",
"@typescript-eslint/eslint-plugin": "^5.30.6",
"@typescript-eslint/parser": "^5.30.6",
"nodemon": "^3.1.7",
"ts-node": "^10.9.1"
}
}