-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
86 lines (86 loc) · 2.2 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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
{
"name": "scumchatmonitor",
"version": "0.0.0",
"main": "electron.js",
"description": "SCUMChatMonitor",
"exports": "./app.js",
"type": "module",
"bin": "app.js",
"private": true,
"author": {
"name": "Jacob Graham"
},
"scripts": {
"start": "node app.js",
"nodemon": "nodemon app.js",
"test": "nodemon app.js",
"electron": "electron electron.js",
"package": "electron-builder --dir",
"distribute": "electron-builder"
},
"build": {
"appId": "com.jacobdamiangraham.scummonitorman",
"productName": "ScumMonitorMan",
"files": [
"electron.js",
"preload.js",
"package.json",
"index.js",
"node_modules/**/*",
"public/images/WilsonBotElectron",
"windowControl.ps1",
"windowControl.js"
],
"win": {
"icon": "public/images/WilsonBotElectron"
}
},
"devDependencies": {
"@types/cookie-parser": "^1.4.7",
"@types/express": "^4.17.21",
"@types/express-session": "^1.18.0",
"@types/ftp": "^0.3.36",
"@types/http-errors": "^2.0.4",
"@types/morgan": "^1.9.9",
"@types/passport": "^1.0.16",
"@types/passport-discord": "^0.1.13",
"@types/passport-local": "^1.0.38",
"electron": "^29.2.0",
"electron-builder": "^24.13.3",
"nodemon": "^3.0.2"
},
"dependencies": {
"@azure/storage-blob": "^12.17.0",
"@discordjs/builders": "^1.6.3",
"@discordjs/rest": "^1.7.1",
"async-mutex": "^0.5.0",
"connect-mongo": "^5.0.0",
"cookie-parser": "~1.4.4",
"crypto": "^1.0.1",
"debug": "~2.6.9",
"discord-api-types": "^0.37.43",
"discord.js": "^14.14.1",
"dotenv": "^16.1.4",
"express": "^4.18.2",
"express-session": "^1.17.3",
"express-validator": "^7.1.0",
"ftp": "^0.3.10",
"generic-pool": "^3.9.0",
"google-auth-library": "^8.9.0",
"googleapis": "^39.2.0",
"http-errors": "~1.6.3",
"mongodb": "^5.6.0",
"morgan": "~1.9.1",
"mysql2": "^3.6.3",
"node-windows": "^1.0.0-beta.8",
"nodemailer": "^6.9.3",
"passport": "^0.6.0",
"passport-discord": "^0.1.4",
"passport-local": "^1.0.0",
"pug": "^3.0.2",
"redis": "^4.6.13",
"uuid": "^9.0.0",
"ws": "^8.16.0",
"wss": "^3.3.4"
}
}