-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
50 lines (50 loc) · 1.37 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
{
"name": "playtomic-bot",
"version": "3",
"description": "",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"prebuild": "rimraf ./dist",
"build": "tsc",
"prestart": "npm run build",
"start": "node -r dotenv/config dist/index.js",
"start:dev": "nodemon -r dotenv/config src/index.ts",
"pretty": "prettier --write 'src/**/*.ts'",
"pretty:check": "prettier --check 'src/**/*.ts'",
"lint": "eslint 'src/**/*.ts'",
"prepare": "husky install"
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"@commitlint/cli": "17.1.2",
"@commitlint/config-conventional": "17.1.0",
"@types/clone": "2.1.1",
"@types/jsonwebtoken": "8.5.9",
"@types/node-telegram-bot-api": "0.57.6",
"@typescript-eslint/eslint-plugin": "5.41.0",
"@typescript-eslint/parser": "5.41.0",
"eslint": "8.26.0",
"eslint-config-prettier": "8.5.0",
"eslint-plugin-prettier": "4.2.1",
"husky": "8.0.1",
"nodemon": "2.0.20",
"prettier": "2.7.1",
"ts-node": "10.9.1",
"typescript": "4.9.4"
},
"dependencies": {
"clone": "2.1.2",
"dayjs": "1.11.6",
"dotenv": "16.0.3",
"jsonwebtoken": "8.5.1",
"node-telegram-bot-api": "0.59.0",
"pino": "8.7.0",
"pino-pretty": "9.1.1",
"rimraf": "3.0.2",
"undici": "5.11.0",
"zod": "3.20.2"
}
}