-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
61 lines (61 loc) · 1.76 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
{
"name": "@celo/notification-service",
"description": "A cloud service that dispatches notifications to mobile clients",
"version": "0.0.5",
"private": true,
"author": "Celo",
"license": "Apache-2.0",
"scripts": {
"build": "tsc",
"gcp-build": "npm run build",
"test": "cp config/config.test.env .env; export TZ=UTC && jest",
"test:watch": "yarn test --watch",
"lint": "tslint -c tslint.json --project tsconfig.json",
"start": "node ./dist/index.js",
"start:local": "npm run build; cp config/config.local.env .env; node --inspect ./dist/index.js",
"deploy": "./deploy.sh"
},
"dependencies": {
"@celo/contractkit": "1.2.2-beta",
"@celo/utils": "1.2.2-beta",
"@ethersproject/abi": "5.0.4",
"analytics-node": "~4.0.1",
"async-polling": "^0.2.1",
"bignumber.js": "^9.0.0",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"express-prom-bundle": "6.3.4",
"firebase-admin": "^9.5.0",
"i18next": "^19.0.2",
"node-fetch": "^2.6.1",
"prom-client": "^13.1.0",
"utf8": "^3.0.0",
"web3-eth-abi": "1.3.0",
"web3-utils": "1.3.0"
},
"devDependencies": {
"@google-cloud/nodejs-repo-tools": "^2.3.3",
"@types/analytics-node": "~3.1.5",
"@types/async-polling": "^0.0.3",
"@types/dotenv": "^8.2.0",
"@types/express": "^4.17.6",
"@types/node-fetch": "^2.5.7",
"@types/utf8": "^2.1.6",
"typescript": "^3.8.3"
},
"engines": {
"node": "12"
},
"resolutions": {
"web3-eth-abi/**/@ethersproject/abi": "5.0.4",
"node-gyp": "5.0.1",
"tar": "4.4.18",
"lodash": "4.17.15",
"react-native-ntp-client": "^1.0.0",
"**/codecov/**/js-yaml": "^3.13.1",
"**/deep-extend": "^0.5.1",
"**/extend": "^3.0.2",
"sha3": "1.2.3",
"node-hid": "0.7.3"
}
}