-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
47 lines (47 loc) · 1.7 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
{
"name": "blockchain-event-notifier",
"license": "Apache-2.0",
"private": true,
"engines": {
"node": "18.* || 20.*",
"npm": "8.* || 9.*"
},
"scripts": {
"build": "tsc -p tsconfig.json",
"start": "node --trace-warnings --abort-on-uncaught-exception --unhandled-rejections=strict dist/index.js",
"migrate": "./node_modules/.bin/node-pg-migrate --envPath ./.env.local --tsconfig ./tsconfig.json -j ts -m ./src/migrations -d CONNECTION_STRING",
"test": "jest --forceExit --detectOpenHandles --coverage --verbose --passWithNoTests",
"rundb:local": "docker-compose up -d && docker exec blockchain_event_notifier_db bash -c \"until pg_isready; do sleep 1; done\" && sleep 5",
"lint:check": "eslint '**/*.{js,ts}'",
"lint:fix": "eslint '**/*.{js,ts}' --fix"
},
"dependencies": {
"@aws-sdk/client-sns": "^3.609.0",
"@dcl/catalyst-contracts": "^4.4.2",
"@dcl/crypto": "^3.4.5",
"@dcl/platform-server-commons": "^0.0.4",
"@dcl/schemas": "^15.1.2",
"@well-known-components/env-config-provider": "^1.2.0",
"@well-known-components/http-server": "^2.1.0",
"@well-known-components/interfaces": "^1.4.3",
"@well-known-components/logger": "^3.1.3",
"@well-known-components/metrics": "^2.1.0",
"@well-known-components/pg-component": "^0.2.3",
"@well-known-components/thegraph-component": "^1.6.0",
"cron": "^3.1.7"
},
"devDependencies": {
"@dcl/eslint-config": "^2.2.1",
"@types/node": "^20.14.9",
"@well-known-components/test-helpers": "^1.5.8",
"ts-node": "^10.9.2",
"typescript": "^5.5.3"
},
"prettier": {
"printWidth": 120,
"semi": false,
"singleQuote": true,
"trailingComma": "none",
"tabWidth": 2
}
}