-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
44 lines (44 loc) · 1.47 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
{
"dependencies": {
"@types/dotenv": "^8.2.3",
"@types/jest": "^29.5.14",
"axios": "^1.7.8",
"axios-cookiejar-support": "^5.0.3",
"dotenv": "^16.4.5",
"grammy": "^1.32.0",
"jest": "^29.7.0",
"lowdb": "^7.0.1",
"nedb": "^1.8.0",
"node-cron": "^3.0.3",
"uuid": "^11.0.3"
},
"name": "sui-bot",
"description": "",
"version": "1.0.0",
"main": "app.js",
"scripts": {
"test": "jest",
"test:createClient": "jest test/services/moduls/01-createNewConfig.integeration.test.js",
"test:editClinet": "jest --runInBand test/services/moduls/02-editConfig.integeration.test.js",
"test:getUsage": "jest --runInBand test/services/moduls/03-getConfigUsage.integeration.test.js",
"test:handleRefferal": "jest test/services/moduls/04-handleRefferalPrize.integration.test.js",
"test:crons": "jest test/services/moduls/crons/usersUsage.integration.test.js",
"start": "nodemon index.js",
"production": "pm2 start index.js --name vpn-bot --log-date-format 'YYYY-MM-DD HH:mm:ss' --log /path/to/custom/logfile.log --watch",
"stop": "pm2 stop all",
"dev": "ts-node-esm index.js"
},
"keywords": [],
"author": "",
"license": "ISC",
"type": "module",
"devDependencies": {
"@babel/plugin-transform-modules-commonjs": "^7.26.3",
"@babel/preset-env": "^7.26.0",
"@babel/preset-react": "^7.26.3",
"@grammyjs/types": "^3.16.0",
"babel-jest": "^29.7.0",
"nodemon": "^3.1.7",
"ts-node": "^10.9.2"
}
}