-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
40 lines (40 loc) · 1.08 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
{
"name": "xelticamc-bot",
"version": "4.0.0-beta",
"description": "XelticaMC General Manager Bot",
"main": "built/app.js",
"author": "Xeltica <[email protected]>",
"license": "MIT",
"private": true,
"scripts": {
"tsc": "tsc",
"start": "node built/app.js",
"lint": "eslint src/index.ts",
"lint:fix": "eslint --fix src/index.ts",
"clean": "rimraf built",
"build": "tsc",
"watch": "nodemon"
},
"dependencies": {
"@prisma/client": "^4.2.1",
"discord.js": "^13.7.0",
"dotenv": "^8.2.0",
"node-fetch": "^2.6.1",
"rndstr": "^1.0.0"
},
"devDependencies": {
"@types/node": "^17.0.33",
"@types/node-fetch": "^2.5.8",
"@typescript-eslint/eslint-plugin": "^3.7.0",
"@typescript-eslint/parser": "^3.7.0",
"eslint": "^7.5.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-prettier": "^3.1.4",
"nodemon": "^2.0.4",
"npm-run-all": "^4.1.5",
"prettier": "^2.0.5",
"prisma": "^4.2.1",
"rimraf": "^3.0.2",
"typescript": "^4.6.4"
}
}