-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
45 lines (45 loc) · 1.5 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
{
"name": "scrap-dealer-bot",
"version": "1.0.0",
"description": "",
"main": "index.js",
"dependencies": {
"@slack/web-api": "^5.8.0",
"cross-env": "^7.0.2",
"dotenv": "^8.2.0",
"fastify": "^2.13.0",
"fastify-blipp-log": "^1.0.2",
"fastify-helmet": "^3.0.2",
"fastify-static": "^2.6.0",
"http-errors": "^1.7.3",
"luxon": "^1.22.0",
"mongodb": "^3.5.5",
"pino": "^5.17.0",
"pino-pretty": "^3.6.1",
"qs": "^6.9.3",
"raw-body": "^2.4.1",
"source-map-support": "^0.5.16",
"tsscmp": "^1.0.6"
},
"devDependencies": {
"@types/config": "0.0.36",
"@types/got": "^9.6.9",
"@types/http-errors": "^1.6.3",
"@types/pino": "^5.17.0",
"shelljs": "^0.8.3",
"ts-node": "^8.8.1",
"typescript": "^3.8.3",
"nodemon": "^2.0.2"
},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "nodemon ./src/index.ts",
"dev": "node ./dev.js && tmux attach-session -t \"$(pwd)\"",
"check-logs": "kubectl logs -f $(kubectl get pods -l app=sb --namespace default | awk 'NR==2{print $1}') --namespace default",
"prod": "cross-env NODE_ENV=production node dist/index.js",
"build": "tsc --project tsconfig.json",
"d:build": "docker build -t rg.fr-par.scw.cloud/ddbrdbr-scrapy-bot:v33arm --platform=linux/amd64 ."
},
"author": "",
"license": "ISC"
}