-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
32 lines (32 loc) · 803 Bytes
/
package.json
File metadata and controls
32 lines (32 loc) · 803 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
31
32
{
"name": "guild-tracker",
"version": "1.0.0",
"description": "Hypixel guilds tracker",
"main": "src/index.ts",
"scripts": {
"start:dev": "ts-node-dev --transpile-only src/index.ts",
"start": "ts-node src/index.ts",
"test": "echo \"Error: no test specified\" && exit 1"
},
"author": "SimplyNo",
"license": "ISC",
"dependencies": {
"@discordjs/collection": "^1.5.1",
"@types/express": "^4.17.17",
"axios": "^1.4.0",
"chalk": "^4.1.2",
"ejs": "^3.1.9",
"express": "^4.18.2",
"fs": "^0.0.1-security",
"ioredis": "^5.3.2",
"mongoose": "^7.2.3",
"node-fetch": "^2.6.7",
"path": "^0.12.7",
"ts-node": "^10.9.1",
"ts-node-dev": "^2.0.0",
"typescript": "^5.1.3"
},
"devDependencies": {
"@types/node": "^20.4.1"
}
}