-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
48 lines (48 loc) · 1.17 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
{
"name": "discordstat-api",
"version": "0.0.0",
"description": "Track Discord bot stats",
"main": "build/index.js",
"author": {
"email": "[email protected]",
"name": "Luyc LLC",
"url": "https://luyx.dev"
},
"license": "ISC",
"type": "module",
"engines": {
"node": ">=20.4.0"
},
"imports": {
"#models": "./build/core/models/index.js",
"#typings": "./build/typings/index.js"
},
"bugs": {
"url": "https://github.com/LuyxDevelopment/discordstat-api/issues"
},
"homepage": "https://github.com/LuyxDevelopment/discordstat-api#readme",
"devDependencies": {
"@types/node": "^20.4.4",
"@typescript-eslint/eslint-plugin": "^6.6.0",
"@typescript-eslint/parser": "^6.6.0",
"eslint": "^8.45.0",
"typescript": "^5.2.2"
},
"dependencies": {
"ajv": "^8.12.0",
"better-random.js": "^2.0.4",
"discord-api-types": "^0.37.51",
"discord.js": "^14.13.0",
"dotenv": "^16.3.1",
"fastify": "^4.22.0",
"http-status-codes": "^2.2.0",
"iso-639-1": "^3.0.1",
"mongoose": "^7.5.0"
},
"scripts": {
"build": "tsc",
"lint": "eslint --cache --fix",
"check": "npm run lint && tsc --noEmit",
"start": "npm run lint && npm run build && node build/index.js"
}
}