forked from zed-io/kolektivo-api
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
88 lines (88 loc) · 2.89 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
78
79
80
81
82
83
84
85
86
87
88
{
"name": "@valora/blockchain-api",
"description": "A cloud service that stores and serves data about blockchain activity",
"version": "0.0.1",
"private": true,
"engines": {
"node": "^16"
},
"author": "Valora Inc",
"license": "Apache-2.0",
"scripts": {
"e2e": "firebase emulators:exec \"node_modules/.bin/ts-node e2e/run.ts\" --only=database,auth --project=e2e",
"test": "jest --ci --silent --coverage --runInBand && eslint --ext=.ts src/ test/ e2e/ && prettier --check \"./**/*.ts\"",
"test:fast": "jest --ci",
"test:verbose": "jest --ci --verbose --runInBand",
"firebase:emulate": "firebase emulators:start --only database,auth --project=emulator",
"format": "prettier --loglevel error --write \"./**/*.ts\"",
"lint": "eslint --ext=.ts --fix src/ test/ e2e/",
"start": "node ./dist/index.js",
"start:dev": "tsc-watch --onSuccess \"node ./dist/index.js\" ",
"build": "tsc -p .",
"clean": "rm -rf dist coverage",
"gcp-build": "npm run build",
"deploy": "./deploy.sh",
"reset": "yarn reset-modules",
"reset-modules": "rm -rf node_modules"
},
"prettier": "@valora/prettier-config",
"dependencies": {
"@celo/contractkit": "1.5.1",
"@celo/utils": "1.5.1",
"@google-cloud/logging-bunyan": "~3.3.1",
"@sentry/node": "^6.19.7",
"@sentry/tracing": "^6.19.7",
"@types/tiny-async-pool": "^1.0.0",
"@valora/exchanges": "^2.0.2",
"@valora/secrets-loader": "^1.0.0",
"apollo-datasource-rest": "^3.4.0",
"apollo-server-express": "3.9.0",
"bignumber.js": "^9.0.2",
"bunyan": "~1.8.15",
"bunyan-prettystream": "^0.1.3",
"dotenv": "^10.0.0",
"express": "^4.17.1",
"express-prom-bundle": "^6.3.4",
"firebase-admin": "^10.0.0",
"graphql": "16.5.0",
"knex": "^0.95.14",
"pg": "^8.7.1",
"prom-client": "^14.0.1",
"tiny-async-pool": "^1.2.0",
"utf8": "^3.0.0",
"web3": "1.6.1",
"web3-eth-abi": "1.6.1",
"yargs": "^17.5.1"
},
"devDependencies": {
"@google-cloud/nodejs-repo-tools": "^3.3.0",
"@types/bunyan": "~1.8.8",
"@types/bunyan-prettystream": "^0.1.32",
"@types/dotenv": "^8.2.0",
"@types/express": "^4.17.6",
"@types/jest": "^27.0.3",
"@types/utf8": "^3.0.0",
"@typescript-eslint/eslint-plugin": "^5.10.2",
"@valora/eslint-config-typescript": "^1.0.0",
"@valora/prettier-config": "^0.0.1",
"axios": "^0.24.0",
"eslint": "^7.32.0",
"eslint-plugin-import": "2.26.0",
"eslint-plugin-jest": "^26.1.1",
"eslint-plugin-react": "^7.27.1",
"eslint-plugin-react-hooks": "^4.3.0",
"eslint-plugin-react-native": "^3.11.0",
"firebase-tools": "11.1.0",
"jest": "^27.4.2",
"jest-fetch-mock": "^3.0.3",
"prettier": "^2.5.0",
"sqlite3": "^5.1.2",
"ts-jest": "^27.0.7",
"tsc-watch": "^5.0.3",
"typescript": "4.7.4"
},
"resolutions": {
"**/cross-fetch": "3.0.6",
"node-gyp": "^8"
}
}