-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
50 lines (50 loc) · 1.36 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
{
"name": "anonymous-chat",
"version": "0.2",
"main": "dist/shardingManager.js",
"license": "Apache-2.0",
"scripts": {
"build": "rimraf ./dist && tsc",
"start": "node dist/shardingManager.js",
"start:dev": "cross-env NODE_ENV=dev nodemon",
"format:check": "prettier --check ./src/**/*",
"format": "prettier --write ./src/**/*"
},
"repository": {
"url": "https://github.com/D3rise/anonymous-chats-discord"
},
"dependencies": {
"discord-akairo": "^8.1.0",
"discord.js": "12.5.3",
"dotenv": "^10.0.0",
"i18n": "^0.13.3",
"log4js": "^6.3.0",
"long": "^4.0.0",
"moment": "^2.29.1",
"moment-duration-format": "^2.3.2",
"moment-timezone": "^0.5.33",
"nohm": "^2.2.3",
"pg": "^8.6.0",
"reflect-metadata": "^0.1.13",
"topgg-autoposter": "^2.0.0",
"typeorm": "^0.2.24",
"typeorm-naming-strategies": "^2.0.0"
},
"devDependencies": {
"@trongnd/ts-nodemon": "^1.0.3",
"@types/i18n": "^0.13.0",
"@types/long": "^4.0.1",
"@types/moment-duration-format": "^2.2.2",
"@types/moment-timezone": "^0.5.30",
"@types/mongoose": "^5.10.5",
"@types/node": "^15.6.1",
"@types/redis": "^2.8.28",
"@types/ws": "^7.4.4",
"cross-env": "^7.0.3",
"nodemon": "^2.0.7",
"prettier": "2.3.0",
"rimraf": "^3.0.2",
"ts-node": "^10.0.0",
"typescript": "^4.3.2"
}
}