generated from Pavel-Durov/project.template.ts
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
34 lines (34 loc) · 898 Bytes
/
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
{
"name": "project.template.ts",
"version": "0.0.1",
"description": "Template for Typescript projects",
"main": "src/index.ts",
"scripts": {
"test": "jest ./test",
"start": "tsx ./src/index.ts",
"lint:fix": "biome format ./src/** ./test/** --write",
"lint": "biome format ./src/** ./test/**",
"build": "tsc",
"prepare": "husky install",
"commitlint": "commitlint --edit"
},
"author": "[email protected]",
"license": "ISC",
"dependencies": {
"axios": "^1.7.7",
"cheerio": "^1.0.0",
"date-fns": "^2.30.0",
"jest": "^29.7.0",
"node-telegram-bot-api": "^0.66.0",
"ts-jest": "^29.2.5",
"winston": "^3.15.0"
},
"devDependencies": {
"@biomejs/biome": "1.1.2",
"@commitlint/cli": "^17.7.2",
"@commitlint/config-conventional": "^17.7.0",
"husky": "^8.0.3",
"tsx": "^3.13.0",
"typescript": "^5.2.2"
}
}