forked from codecorsair/o7
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
45 lines (45 loc) · 1.22 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
{
"name": "o7",
"version": "1.0.0",
"main": "index.js",
"license": "MIT",
"contributors": [
"JB <[email protected]>",
"Ralph Schuler <[email protected]>"
],
"scripts": {
"clean": "rimraf dist && mkdirp dist",
"build": "yarn clean && tsc -p tsconfig.json && tsc-alias -p tsconfig.json",
"build:watch": "yarn tsc -p tsconfig.json --watch",
"lint": "eslint src --ext .ts",
"format": "prettier --write src/**/*.ts"
},
"devDependencies": {
"@types/mongodb": "^4.0.7",
"@types/node": "^18.15.5",
"@typescript-eslint/eslint-plugin": "^5.56.0",
"@typescript-eslint/parser": "^5.56.0",
"eslint": "^8.36.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-prettier": "^4.2.1",
"mkdirp": "^2.1.6",
"prettier": "^2.8.6",
"rimraf": "^4.4.1",
"ts-node": "^10.9.1",
"tsc-alias": "^1.8.4",
"typescript": "^5.0.2"
},
"dependencies": {
"discord-cross-hosting": "^2.3.2",
"discord-hybrid-sharding": "^2.1.1",
"discord.js": "^14.8.0",
"fuse.js": "^6.6.2",
"lodash": "^4.17.21",
"moment": "^2.29.4",
"mongodb": "^5.1.0",
"neo4j-driver": "^5.6.0",
"node-fetch": "^3.3.1",
"numeral": "^2.0.6",
"pino": "^8.11.0"
}
}