-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
40 lines (40 loc) · 1.01 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
{
"name": "nodejs-test",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"build": "npx tsc",
"start": "node ./index.js",
"dev": "concurrently \"npx tsc --watch\" \"nodemon -q dist/index.js\""
},
"author": "hossein",
"license": "ISC",
"dependencies": {
"body-parser": "^1.20.1",
"cors": "^2.8.5",
"errorhandler": "^1.5.1",
"express": "^4.18.2",
"express-validator": "^6.14.3",
"moment": "^2.29.4",
"node-telegram-bot-api": "^0.61.0",
"sequelize": "^6.28.0",
"socks-proxy-agent": "^7.0.0",
"sqlite3": "^5.1.4",
"uuid": "^9.0.0"
},
"devDependencies": {
"@types/cors": "^2.8.13",
"@types/errorhandler": "^1.5.0",
"@types/express": "^4.17.16",
"@types/morgan": "^1.9.4",
"@types/node": "^18.11.18",
"@types/node-telegram-bot-api": "^0.57.6",
"@types/uuid": "^9.0.0",
"concurrently": "^7.6.0",
"morgan": "^1.10.0",
"nodemon": "^2.0.20",
"ts-node": "^10.9.1",
"typescript": "^4.9.4"
}
}