-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpackage.json
66 lines (66 loc) · 2.34 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
{
"name": "webnetwork-events",
"version": "0.0.1",
"description": "microservice that reacts to webnetwork events",
"main": "src/server.ts",
"type": "commonjs",
"scripts": {
"update-models": "node ./tools/update-models.mjs",
"test": "echo \"Error: no test specified\" && exit 1",
"start:server": "node ./dist/src/server.js",
"start:cron": "node ./dist/src/scheduler.js",
"build": "rimraf ./build && tsc --project tsconfig.json && tsc-alias -p tsconfig.json && cpx \\\"src/integrations/telegram/message-template/**.hbs\\\" \\\"./dist/src/integrations/telegram/messages-templates/\\\"",
"dev": "ts-node-dev -r tsconfig-paths/register --ignore-watch node_modules --respawn --transpile-only ./src/server.ts",
"dev-scheduler": "ts-node-dev -r tsconfig-paths/register --ignore-watch node_modules --respawn --transpile-only src/scheduler.ts",
"dev:debug": "ts-node-dev -r tsconfig-paths/register --inspect=0.0.0.0:9230 --notify --poll --respawn --transpile-only ./src/server.ts"
},
"repository": {
"type": "git",
"url": "git+https://github.com/taikai/webnetwork-events.git"
},
"author": "[email protected]",
"license": "ISC",
"bugs": {
"url": "https://github.com/taikai/webnetwork-events/issues"
},
"homepage": "https://github.com/taikai/webnetwork-events#readme",
"dependencies": {
"@elastic/elasticsearch": "^8.2.1",
"@sendgrid/mail": "^7.7.0",
"@taikai/dappkit": "^2.3.4",
"@taikai/scribal": "^1.0.3",
"axios": "^0.27.2",
"bignumber.js": "9.1.0",
"cors": "^2.8.5",
"cron-module-actions": "^0.2.4",
"cross-env": "^7.0.3",
"date-fns": "^2.29.2",
"dotenv": "^16.0.1",
"elastic-apm-node": "^3.42.0",
"express": "^4.18.1",
"form-data": "^4.0.0",
"handlebars": "^4.7.7",
"node-html-to-image": "^3.2.4",
"octokit": "^2.0.7",
"pg": "^8.7.3",
"pg-hstore": "^2.3.4",
"sequelize": "^6.21.3",
"sequelize-auto": "^0.8.8",
"telegraf": "^4.11.2",
"twitter-api-v2": "^1.12.5",
"uint8arrays": "^3.1.0",
"uuid": "^8.3.2"
},
"devDependencies": {
"@octokit/types": "^7.1.1",
"@types/cors": "^2.8.12",
"@types/express": "^4.17.13",
"@types/node": "^18.7.9",
"@types/uuid": "^8.3.4",
"cpx": "^1.5.0",
"ts-node-dev": "^2.0.0",
"tsc-alias": "^1.7.0",
"tsconfig-paths": "^4.1.0",
"typescript": "^4.7.4"
}
}