-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
41 lines (41 loc) · 1.03 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
{
"name": "telegram-user",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "npx tsc",
"start": "node bin/dist/index.js",
"dev": "concurrently \"npx tsc --watch\" \"nodemon -q bin/dist/index.js\""
},
"repository": {
"type": "git",
"url": "git+https://github.com/andreyka99/telegram-user.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/andreyka99/telegram-user/issues"
},
"homepage": "https://github.com/andreyka99/telegram-user#readme",
"dependencies": {
"@mtproto/core": "^6.2.0",
"body-parser": "^1.20.0",
"concurrently": "^7.2.2",
"cors": "^2.8.5",
"dotenv": "^16.0.1",
"ejs": "^3.1.8",
"express": "^4.18.1",
"mongodb": "^4.7.0",
"mongoose": "^6.4.0",
"morgan": "^1.10.0",
"nodemon": "^2.0.16"
},
"devDependencies": {
"@types/express": "^4.17.13",
"@types/node": "^18.0.0",
"typescript": "^4.7.4"
}
}