-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
38 lines (38 loc) · 1.01 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
{
"name": "pojavbot",
"version": "0.0.0",
"private": true,
"main": "dist/index.js",
"type": "module",
"license": "MIT",
"scripts": {
"pull-reset": "git pull && git reset --hard origin/main",
"compile": "rimraf dist/ && tsc -w",
"format": "prettier --write . && eslint src --fix",
"postinstall": "tsc",
"start": "node --enable-source-maps --es-module-specifier-resolution=node ."
},
"repository": "https://github.com/PojavLauncherTeam/PojavBot.git",
"engines": {
"node": ">=18.15"
},
"dependencies": {
"@messageformat/core": "^3.1.0",
"@sapphire/time-utilities": "^1.7.9",
"@types/express": "^4.17.17",
"discord.js": "^14.8.0",
"dotenv": "^16.0.3",
"eslint": "^8.37.0",
"eslint-config-neon": "^0.1.41",
"express": "^4.18.2",
"mongodb": "^5.1.0",
"node-fetch": "^3.3.1"
},
"devDependencies": {
"@types/node": "^18.15.11",
"prettier": "^2.8.7",
"rimraf": "^4.4.1",
"typescript": "^5.0.2"
},
"packageManager": "[email protected]"
}