-
Notifications
You must be signed in to change notification settings - Fork 26
/
Copy pathpackage.json
39 lines (39 loc) · 899 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
35
36
37
38
39
{
"name": "tsc-bot",
"version": "0.0.1",
"description": "Typescript Community Bot",
"main": "dist/index.js",
"dependencies": {
"@typescript/twoslash": "^1.1.2",
"cookiecord": "^0.2.12",
"dotenv-safe": "^8.2.0",
"lz-string": "^1.4.4",
"parse-duration": "^0.4.4",
"pg": "^8.3.0",
"pretty-ms": "^7.0.0",
"typeorm": "^0.2.25"
},
"devDependencies": {
"@types/common-tags": "^1.8.0",
"@types/dotenv-safe": "^8.1.0",
"@types/lz-string": "^1.3.34",
"@types/node": "^13.7.0",
"@types/ws": "^7.2.1",
"husky": "^4.2.5",
"prettier": "^2.0.5",
"pretty-quick": "^2.0.1",
"ts-node-dev": "^1.1.6",
"typescript": "^4.1.3"
},
"husky": {
"hooks": {
"pre-commit": "pretty-quick --staged"
}
},
"scripts": {
"start": "ts-node-dev --respawn src",
"build": "tsc",
"lint": "prettier --check \"src/**/*.ts\"",
"lint:fix": "prettier \"src/**/*.ts\" --write "
}
}