-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 762 Bytes
/
package.json
File metadata and controls
33 lines (33 loc) · 762 Bytes
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
{
"name": "backend",
"type": "module",
"exports": "./index.js",
"version": "1.0.0",
"description": "MiniAppSample",
"main": "src/index.js",
"scripts": {
"start": "node -r dotenv/config src/index.js",
"start:dev": "nodemon --exec \"npm start\""
},
"keywords": [],
"author": "Ilya B",
"license": "blabla",
"devDependencies": {
"@types/node": "^20.8.2",
"nodemon": "^3.1.0"
},
"dependencies": {
"@vercel/kv": "^1.0.1",
"cors": "^2.8.5",
"debug": "^4.3.4",
"dotenv": "^16.3.1",
"dotenv-cli": "^7.4.2",
"express": "^4.18.2",
"fetch": "^1.1.0",
"node-fetch": "^3.3.2",
"telegraf": "^4.14.0",
"telegraf-session-local": "^2.1.1",
"typegram": "^5.2.0",
"vercel": "^34.1.9"
}
}