-
Notifications
You must be signed in to change notification settings - Fork 12
/
package.json
76 lines (76 loc) · 2.19 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
{
"name": "yoroi-cardano-backend",
"version": "3.1.1",
"description": "Wrapped for cardano-db-sync and cardano-graphql with endpoints useful for light wallets",
"main": "src/index.ts",
"scripts": {
"postinstall": "tsc",
"start": "pm2 start pm2.yaml",
"stop": "pm2 stop pm2.yaml",
"start-poller": "pm2 start ./dist/coin-price/poller.js --cron '* * * * *'",
"dev": "tsc-watch --onSuccess \"node ./dist/index.js\"",
"eslint": "eslint src tests",
"test": "mocha -r ts-node/register tests/**/*.test.ts --slow 0",
"testtxhist": "mocha -r ts-node/register tests/txHistory.test.ts",
"prettier": "npx prettier --write src"
},
"author": "",
"license": "MIT",
"husky": {
"hooks": {
"pre-push": "tsc && npm run eslint"
}
},
"dependencies": {
"@emurgo/cardano-serialization-lib-nodejs": "9.1.3",
"@sentry/node": "^6.17.5",
"@sentry/tracing": "^6.17.5",
"aws-sdk": "^2.1056.0",
"axios": "^0.21.4",
"bech32": "^2.0.0",
"bunyan": "^1.8.15",
"cardano-wallet": "^1.2.2",
"chai": "^4.3.7",
"compression": "^1.7.4",
"config": "^3.3.6",
"cors": "^2.8.5",
"express": "^5.0.0-alpha.8",
"hash-wasm": "^4.9.0",
"lodash": "^4.17.21",
"mocha": "^10.0.0",
"pg": "^8.8.0",
"pm2": "^5.2.0",
"semver-compare": "^1.0.0",
"ts-node": "^10.9.1",
"tsc-watch": "^5.0.3",
"typescript": "^4.9.3",
"ws": "^7.5.8"
},
"devDependencies": {
"@types/bunyan": "^1.8.8",
"@types/chai": "^4.3.4",
"@types/compression": "^1.7.2",
"@types/config": "3.3.0",
"@types/cors": "^2.8.13",
"@types/express": "^4.17.14",
"@types/lodash": "^4.14.191",
"@types/mocha": "^10.0.1",
"@types/node": "14.17.6",
"@types/pg": "^8.6.5",
"@types/ramda": "github:types/npm-ramda#dist",
"@types/semver-compare": "^1.0.1",
"@types/ws": "^8.5.3",
"@typescript-eslint/eslint-plugin": "^3.10.1",
"@typescript-eslint/parser": "^3.10.1",
"eslint": "^7.32.0",
"eslint-config-airbnb-typescript": "^17.0.0",
"eslint-plugin-import": "^2.26.0",
"husky": "^8.0.2",
"prettier": "^2.5.1",
"ramda": "^0.27.1"
},
"engines": {
"node": "14.17.6",
"npm": "6.14.15"
}
}