-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
46 lines (46 loc) · 1.52 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
{
"author": "Vsevolod (@kraftwerk28) <[email protected]>",
"dependencies": {
"dotenv": "^9.0.2",
"ioredis": "^4.27.1",
"knex": "^0.95.4",
"node-fetch": "^2.6.1",
"pg": "^8.5.1",
"pino": "^7.11.0",
"prom-client": "^14.1.0",
"telegraf": "^4.3.0"
},
"devDependencies": {
"@types/ioredis": "^4.19.3",
"@types/node": "^18.0.3",
"@types/node-fetch": "^2.5.7",
"@types/pg": "^7.14.7",
"@typescript-eslint/eslint-plugin": "^5.46.1",
"@typescript-eslint/parser": "^5.46.1",
"eslint": "^8.29.0",
"eslint-config-prettier": "^8.5.0",
"nodemon": "^2.0.7",
"prettier": "^2.8.1",
"ts-node": "^8.10.2",
"typegram": "^3.1.4",
"typescript": "^4.9.4"
},
"license": "MIT",
"main": "index.js",
"name": "blcklstbot",
"scripts": {
"build": "tsc",
"build:clean": "rm -r dist/*",
"build:test": "tsc --outDir test/dist/ --esModuleInterop true test/db.test.ts",
"deploy-db": "psql -d blcklstbot -f ./db.sql",
"dev": "NODE_ENV=development node --es-module-specifier-resolution=node build/",
"format": "prettier --ignore-path=.gitignore --write '**/*.{ts,js,mjs}'",
"lint": "eslint --ignore-path=.gitignore --ignore-pattern='captcha/index2.ts' src",
"lint:fix": "eslint --fix --ignore-path=.gitignore --ignore-pattern='src/captcha/index2.ts' src",
"nodemon": "NODE_ENV=development nodemon build/",
"test": "NODE_ENV=development ts-node test/index.test.ts",
"watch": "tsc -w --inlineSourceMap"
},
"type": "module",
"version": "2.0.1"
}