-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
57 lines (57 loc) · 1.63 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
45
46
47
48
49
50
51
52
53
54
55
56
57
{
"devDependencies": {
"@types/node": "^20.3.1",
"@typescript-eslint/eslint-plugin": "^5.60.1",
"@typescript-eslint/parser": "^5.60.1",
"eslint": "^8.43.0",
"eslint-config-prettier": "8.8.0",
"eslint-import-resolver-typescript": "3.5.5",
"eslint-plugin-import": "2.27.5",
"eslint-plugin-perfectionist": "^1.4.0",
"eslint-plugin-prettier": "4.2.1",
"lint-staged": "13.2.2",
"prettier": "2.8.8",
"prettier-plugin-organize-imports": "3.2.2",
"tsc-watch": "^6.0.4",
"tsx": "^3.12.7",
"typescript": "^5.0.4"
},
"dependencies": {
"@grammyjs/conversations": "^1.1.2",
"@grammyjs/hydrate": "^1.3.1",
"@grammyjs/i18n": "^1.0.1",
"@grammyjs/menu": "^1.2.1",
"@grammyjs/parse-mode": "^1.7.1",
"@grammyjs/runner": "^2.0.3",
"dotenv": "^16.3.1",
"grammy": "^1.17.1",
"mongoose": "^7.3.1",
"telegraf-middleware-console-time": "^2.1.0",
"ton": "^13.5.0",
"ton-core": "^0.49.1",
"ton-crypto": "^3.2.0",
"zod": "^3.21.4"
},
"scripts": {
"lint:check": "eslint \"src/**/*.ts\"",
"lint:format": "eslint \"src/**/*.ts\" --fix",
"write": "prettier --write \"src/**/*.ts\"",
"typecheck": "tsc",
"dev": "tsc-watch --onSuccess \"tsx ./src/index.ts\"",
"start": "tsx ./src/index.ts",
"pm2": "tsc && pm2 startOrRestart pm2.config.json"
},
"main": "dist/main.js",
"author": "nmifun",
"engines": {
"node": ">=16.10.0"
},
"lint-staged": {
"*.ts": "npm run lint"
},
"name": "ton-faucet",
"version": "1.0.0",
"repository": "https://github.com/NMIFUN/ton-faucet.git",
"license": "MIT",
"packageManager": "yarn@3.6.0"
}