-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
38 lines (38 loc) · 1002 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
{
"name": "pogbot",
"version": "1.1.0",
"main": "./src/index.js",
"license": "MIT",
"type": "module",
"private": true,
"scripts": {
"lint": "prettier . -w",
"build:info": "node ./scripts/generateVersionData.mjs",
"prepare": "husky install"
},
"dependencies": {
"discord.js": "^14.11.0",
"dotenv": "^16.3.1",
"i18next": "^23.7.7",
"i18next-fs-backend": "^2.3.1",
"i18next-icu": "^2.3.0",
"intl-messageformat": "^10.5.8",
"pretty-ms": "^8.0.0",
"sequelize": "^6.32.1",
"winston": "^3.10.0"
},
"devDependencies": {
"@trivago/prettier-plugin-sort-imports": "^4.2.0",
"husky": "^8.0.0",
"prettier": "^3.0.2",
"pretty-quick": "^3.1.3"
},
"optionalDependencies": {
"pg": "^8.11.3",
"pg-hstore": "^2.3.4",
"sqlite3": "^5.1.6"
},
"lint-staged": {
"*.{js,css,md}": "prettier --write"
}
}