-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
51 lines (51 loc) · 1.32 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
51
{
"name": "hatbot-discord",
"version": "1.0.0",
"description": "",
"main": "src/main.ts",
"engines": {
"node": "20.13.1",
"pnpm": "8.x"
},
"scripts": {
"build": "tsup",
"build:watch": "tsup --watch",
"start": "node dist/main.js",
"dev": "tsx src/main.ts",
"test": "jest",
"test:watch": "jest --watch",
"dev:watch": "tsx watch src/main.ts",
"lint": "eslint \"{src,apps,libs,test}/**/*.ts\"",
"lint:fix": "eslint \"{src,apps,libs,test}/**/*.ts\" --fix",
"prettier": "prettier \"src/**/*.ts\"",
"prettier:fix": "prettier --write \"src/**/*.ts\"",
"code-style": "pnpm lint && pnpm prettier"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"@devhatt/eslint-config": "^1.0.1",
"@notionhq/client": "^2.2.14",
"cron": "^3.1.6",
"discord.js": "^14.14.1",
"dotenv": "^16.3.1",
"typescript": "^5.3.2",
"zod": "^3.22.4"
},
"devDependencies": {
"@jest/types": "^29.6.3",
"@types/jest": "^29.5.10",
"@types/node": "^20.10.0",
"@typescript-eslint/eslint-plugin": "^6.15.0",
"@typescript-eslint/parser": "^6.15.0",
"axios": "^1.6.2",
"eslint": "^8.56.0",
"jest": "^29.7.0",
"lint-staged": "^15.2.0",
"ts-jest": "^29.1.1",
"ts-node": "^10.9.1",
"tsup": "^8.0.1",
"tsx": "^4.5.0"
}
}