-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
36 lines (36 loc) · 1.12 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
{
"name": "discord_bot_template",
"version": "1.0.0",
"description": "A Discord bot template in TypeScript",
"main": "./src/start.ts",
"author": "kana00",
"license": "MIT",
"scripts": {
"start": "clear && npx tsc && node ./dist/start.js",
"startdev": "clear && npx tsc && cross-env NODE_ENV=dev node ./dist/start.js",
"startserver": "clear && npx tsc && npx cross-env NODE_ENV=dev pm2 start ./dist/start.js",
"installMongo": "brew install mongodb-community",
"mongoshell": "mongo --host localhost:27017",
"mongod": "mongod --config ./mongod.yaml",
"mongoServiceMacOS": "brew services start mongodb-community",
"stopMongoServiceMacOS": "brew serivces stop mongodb-community",
"test": "jest"
},
"dependencies": {
"chalk": "^2.4.2",
"color": "^3.1.2",
"discord.js": "^11.5.1",
"i18next": "^19.1.0",
"moment": "^2.24.0",
"mongodb": "^3.2.7",
"ts-jest": "^25.2.0",
"typescript": "^3.7.5"
},
"devDependencies": {
"@types/mongodb": "^3.1.28",
"@types/color": "^3.0.0",
"@types/jest": "^25.1.2",
"@types/node": "^12.0.8",
"jest": "^25.1.0"
}
}