-
-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathpackage.json
41 lines (41 loc) · 1.03 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
{
"name": "discord-steam-verification",
"version": "2.0.0",
"description": "Verify your Discord users on first join to your server and check if they have a specific app/game on their Steam library!",
"main": "dist/index.js",
"scripts": {
"dev": "tsup --watch",
"build": "cross-env NODE_ENV=production tsup",
"start": "cd dist && node index"
},
"keywords": [
"discord",
"steam",
"verification"
],
"author": "eggsydev",
"license": "MIT",
"dependencies": {
"axios": "^1.3.4",
"body-parser": "^1.20.2",
"consola": "^2.15.3",
"dotenv": "^16.0.3",
"eris": "^0.17.1",
"express": "^4.18.2",
"express-handlebars": "^7.0.1",
"express-session": "^1.17.3",
"steam-login": "^0.1.7"
},
"devDependencies": {
"@types/body-parser": "^1.19.2",
"@types/express": "^4.17.17",
"@types/express-session": "^1.17.6",
"@types/node": "^18.14.6",
"@types/steam-login": "^0.1.3",
"cross-env": "^7.0.3",
"tsup": "^6.6.3"
},
"engines": {
"node": ">=16.7.0"
}
}