-
Notifications
You must be signed in to change notification settings - Fork 25
/
package.json
42 lines (42 loc) · 1.03 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
{
"name": "tsc-bot",
"version": "0.0.1",
"description": "Typescript Community Bot",
"main": "dist/index.js",
"dependencies": {
"@typescript/twoslash": "^3.2.1",
"algoliasearch": "^4.14.2",
"discord.js": "^14.6.0",
"dotenv-safe": "^8.2.0",
"html-entities": "^2.3.3",
"lz-string": "^1.4.4",
"npm-registry-fetch": "^14.0.2",
"parse-duration": "^1.0.2",
"pg": "^8.8.0",
"prettier": "^2.7.1",
"pretty-ms": "^8.0.0",
"tar": "^6.1.12",
"typeorm": "^0.3.10",
"undici": "^5.12.0"
},
"devDependencies": {
"@types/dotenv-safe": "8.1.2",
"@types/lz-string": "1.3.34",
"@types/node": "16.18.3",
"@types/npm-registry-fetch": "8.0.4",
"@types/prettier": "2.7.1",
"@types/tar": "6.1.3",
"@types/ws": "8.5.3",
"husky": "^8.0.2",
"pretty-quick": "^3.1.3",
"ts-node-dev": "^2.0.0",
"typescript": "^4.9.3"
},
"scripts": {
"start": "ts-node-dev --respawn src",
"build": "tsc",
"lint": "prettier --check \"src/**/*.ts\"",
"lint:fix": "prettier \"src/**/*.ts\" --write ",
"prepare": "husky install"
}
}