-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
42 lines (42 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
{
"name": "oska",
"version": "1.0.0",
"author": "Alan Morel",
"license": "MIT",
"description": "A Discord bot written using Node in TypeScript",
"type": "module",
"repository": {
"type": "git",
"url": "git+https://github.com/AlanMorel/oska.git"
},
"scripts": {
"dev": "nodemon --config ./nodemon.config.json",
"lint": "eslint ./src --fix",
"start": "node --loader ts-paths-esm-loader ./src/Bot.ts",
"ts:check": "tsc --noEmit"
},
"dependencies": {
"@types/node": "^20.8.7",
"discord.js": "^14.13.0",
"dotenv": "^16.3.1",
"picocolors": "^1.0.0",
"ts-paths-esm-loader": "^1.4.3",
"tsconfig-paths": "^4.2.0",
"typescript": "^5.2.2"
},
"devDependencies": {
"@commitlint/cli": "^18.0.0",
"@commitlint/config-conventional": "^18.0.0",
"@typescript-eslint/eslint-plugin": "^6.8.0",
"@typescript-eslint/parser": "^6.8.0",
"eslint": "^8.52.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-no-relative-import-paths": "^1.5.3",
"eslint-plugin-prettier": "^5.0.1",
"eslint-plugin-security": "^1.7.1",
"husky": "^8.0.3",
"lint-staged": "^15.0.2",
"nodemon": "^3.0.1",
"prettier": "^3.0.3"
}
}