-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
65 lines (65 loc) · 1.76 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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
{
"name": "intellidnd",
"version": "1.1.0",
"description": "A Discord bot for handling inventory in DnD campaigns.",
"main": "bot.js",
"scripts": {
"watch": "concurrently \"webpack --watch\" \"nodemon server.js\" --kill-others",
"build": "webpack --mode=production",
"bot": "node bot.js",
"test": "jest",
"open": "code . & concurrently \"webpack --watch\" \"nodemon server.js\" --kill-others",
"web": "node server.js",
"start": "node server.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/moojigc/DiscordBot.git"
},
"author": "M. Moojig Battsogt",
"license": "ISC",
"dependencies": {
"axios": "^0.21.1",
"bcryptjs": "^2.4.3",
"compression": "^1.7.4",
"connect-flash": "^0.1.1",
"connect-mongodb-session": "^3.1.1",
"cors": "^2.8.5",
"discord.js": "^12.0.2",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"express-handlebars": "^6.0.6",
"express-session": "^1.17.1",
"lodash": "^4.17.19",
"moment": "^2.24.0",
"mongoose": "^5.9.18",
"morgan": "^1.10.0",
"passport": "^0.6.0",
"passport-local": "^1.0.0",
"rand-token": "^1.0.1"
},
"bugs": {
"url": "https://github.com/moojigc/DiscordBot/issues"
},
"homepage": "https://github.com/moojigc/DiscordBot#readme",
"devDependencies": {
"@babel/core": "^7.10.2",
"@babel/plugin-transform-runtime": "^7.10.1",
"@babel/preset-env": "^7.10.2",
"@babel/runtime": "^7.10.2",
"babel-loader": "^8.1.0",
"concurrently": "^5.2.0",
"eslint": "^7.2.0",
"jquery": "^3.5.1",
"materialize-css": "^1.0.0-rc.2",
"webpack": "^4.43.0",
"webpack-cli": "^3.3.11",
"webpack-pwa-manifest": "^4.0.0"
},
"keywords": [
"dnd",
"inventory",
"discord",
"bot"
]
}