This repository was archived by the owner on Jan 20, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
69 lines (69 loc) · 2.11 KB
/
Copy pathpackage.json
File metadata and controls
69 lines (69 loc) · 2.11 KB
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
{
"name": "lets-order-something-bot",
"version": "1.0.0",
"description": "Bot to make choosing place to order FUN",
"main": "index.js",
"engines": {
"node": ">=12.0.0 <13.0.0"
},
"scripts": {
"build": "mkdir -p ./build/resources && cp -r ./resources ./build && tsc -b",
"watchts": "npm run build && tsc -w --outDir ./build",
"lint": "eslint src/**/*.ts",
"test": "echo \"Error: no test specified\" && exit 1",
"stack": "docker-compose -f stack.yml up -d",
"start": "export $(cat .env | xargs) && nodemon build/src/index.js",
"parsePlaces": "export $(cat .env | xargs) && cp ./resources/places.csv ./build/resources/places.csv && node build/scripts/parsePlacesCSV"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Malgin/lets-order-something-bot.git"
},
"keywords": [
"bot",
"telegram",
"delivery",
"order"
],
"author": "Vit Lebediev",
"bugs": {
"url": "https://github.com/Malgin/lets-order-something-bot/issues"
},
"homepage": "https://github.com/Malgin/lets-order-something-bot#readme",
"dependencies": {
"amplitude-js": "^5.9.0",
"axios": "^0.19.2",
"body-parser": "^1.19.0",
"express": "^4.17.1",
"i18n": "^0.8.5",
"js-levenshtein": "^1.1.6",
"mongodb": "^3.5.2",
"node-geocoder": "^3.25.0",
"node-telegram-bot-api": "^0.40.0",
"pino": "^5.16.0",
"redis": "^2.8.0",
"uuid": "^7.0.2"
},
"devDependencies": {
"@types/amplitude-js": "^5.8.0",
"@types/axios": "^0.14.0",
"@types/body-parser": "^1.19.0",
"@types/express": "^4.17.3",
"@types/i18n": "^0.8.6",
"@types/mongodb": "^3.3.15",
"@types/node-geocoder": "^3.24.1",
"@types/node-telegram-bot-api": "^0.40.1",
"@types/pino": "^5.15.5",
"@types/redis": "^2.8.14",
"@types/uuid": "^7.0.0",
"@typescript-eslint/eslint-plugin": "^2.18.0",
"@typescript-eslint/parser": "^2.18.0",
"eslint": "^6.8.0",
"eslint-config-airbnb-base": "^14.0.0",
"eslint-plugin-import": "^2.20.0",
"fast-csv": "^4.1.1",
"nodemon": "^2.0.2",
"pino-pretty": "^3.6.0",
"typescript": "^3.7.5"
}
}