-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
57 lines (57 loc) · 1.55 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
{
"name": "catalyst",
"version": "2.0.0",
"description": "A modular Discord bot",
"main": "src/index.js",
"scripts": {
"prettier-format": "prettier --config .prettierrc 'src/**/*.ts' --write",
"lint": "eslint src --ext .ts",
"start": "node dist/index.js"
},
"_moduleAliases": {
"structs": "./dist/structs",
"models": "./dist/models",
"types": "./dist/types",
"utils": "./dist/utils",
"libs": "./dist/libs",
"core": "./dist/core",
"@components": "./dist/components",
"@commands": "./dist/commands",
"@modules": "./dist/modules",
"@services": "./dist/services"
},
"repository": {
"type": "git",
"url": "git+https://github.com/optimisticside/catalyst.git"
},
"author": "OptimisticSide",
"license": "MIT",
"bugs": {
"url": "https://github.com/optimisticside/catalyst/issues"
},
"homepage": "https://github.com/optimisticside/catalyst#readme",
"dependencies": {
"@discordjs/rest": "^0.4.1",
"discord-api-types": "^0.32.0",
"discord.js": "^13.6.0",
"dotenv": "^16.0.0",
"emoji-regex": "^10.1.0",
"glob-promise": "^4.2.2",
"kurasuta": "^3.0.2",
"module-alias": "^2.2.2",
"moment": "^2.29.3",
"mongoose": "^6.3.1",
"node": "17.7.2",
"node-fetch": "^2.6.7",
"systeminformation": "^5.11.14",
"uuid": "^8.3.2",
"winston": "^3.7.2"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^5.21.0",
"@typescript-eslint/parser": "^5.21.0",
"eslint": "^8.14.0",
"prettier": "^2.6.2",
"typescript": "^4.6.3"
}
}