-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
30 lines (30 loc) · 831 Bytes
/
package.json
File metadata and controls
30 lines (30 loc) · 831 Bytes
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
{
"name": "advanced-djs-handler",
"author": "dano",
"version": "1.0.0",
"main": "main.js",
"type": "commonjs",
"license": "UNLICENSED",
"private": true,
"dependencies": {
"moment": "^2.29.3",
"locale-parser": "^1.1.2",
"chalk": "^4.1.2",
"discord.js": "^13.6.0",
"module-alias": "^2.2.2",
"mongoose": "^6.3.5"
},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "node main.js"
},
"_moduleAliases": {
"@root": "./main.js",
"@config": "./src/config/config.json",
"@commands": "./src/commands/",
"@events": "./src/events/",
"@structures": "./src/structure/",
"@utils": "./src/utils/utils.js",
"@schemas": "./src/database/schemas/"
}
}