-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
34 lines (34 loc) · 1.02 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
{
"name": "saasbot",
"version": "1.0.0",
"description": "Este bot está orientado a compartir proyectos de SaaS, el bot es accesible en discord y permite a tu comunidad mostrar sus proyectos, y además a otros usuarios votar por ellos.",
"main": "index.js",
"type": "module",
"scripts": {
"start": "rimraf dist/ && npx tsc --build . && node dist/index.js",
"lint": "eslint \"**/*.{ts,tsx}\" --fix",
"prepare": "husky"
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"@commitlint/cli": "^19.2.1",
"@commitlint/config-conventional": "^19.1.0",
"@types/winston": "^2.4.4",
"eslint": "^8.57.0",
"husky": "^9.0.11",
"rimraf": "^5.0.5",
"typescript": "^5.4.2"
},
"dependencies": {
"@typescript-eslint/eslint-plugin": "^7.3.1",
"@typescript-eslint/parser": "^7.3.1",
"commitlint-config-gitmoji": "^2.3.1",
"discord-api-types": "^0.37.75",
"discord.js": "^14.14.1",
"dotenv": "^16.4.5",
"glob": "^10.3.10",
"winston": "^3.12.0"
}
}