-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
64 lines (64 loc) · 1.53 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
52
53
54
55
56
57
58
59
60
61
62
63
64
{
"name": "rango",
"version": "1.0.0",
"description": "Discord Bot for FIT | Community",
"engines": {
"node": "16.x"
},
"main": "src/index.ts",
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"**/*.js": [
"eslint --fix",
"git add"
]
},
"scripts": {
"start": "ts-node src/index.ts",
"prestart": "ts-node src/deploy-commands.ts",
"dev": "ts-node src/index.ts",
"postinstall": "husky install"
},
"repository": {
"type": "git",
"url": "git+https://github.com/FITCommunity/Rango.git"
},
"author": "Enis Mulić",
"license": "ISC",
"bugs": {
"url": "https://github.com/FITCommunity/Rango/issues"
},
"homepage": "https://github.com/FITCommunity/Rango#readme",
"dependencies": {
"discord-api-types": "^0.22.0",
"discord.js": "^14.7.1",
"dotenv": "^10.0.0",
"dotenv-expand": "^9.0.0",
"imapflow": "^1.0.67",
"mysql2": "^2.3.3",
"node-cron": "^2.0.3",
"pg": "^8.7.1",
"pg-hstore": "^2.3.4",
"sequelize": "^6.29.0",
"sqlite3": "^5.1.2"
},
"devDependencies": {
"@babel/eslint-parser": "^7.15.4",
"@commitlint/cli": "^13.1.0",
"@commitlint/config-conventional": "^13.1.0",
"@types/node": "^18.11.9",
"eslint": "^7.32.0",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-import": "^2.24.2",
"husky": "^7.0.2",
"lint-staged": "^11.1.2",
"sequelize-cli": "^6.5.2",
"ts-node": "^10.9.1",
"typescript": "^4.9.3"
}
}