-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
96 lines (94 loc) · 3.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
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
87
88
89
90
91
92
93
94
95
96
{
"name": "mc-auth-web",
"version": "3.1.2",
"private": true,
"description": "Easily login with your Minecraft account without giving your password or email to strangers! Fully oAuth2 compliant!",
"homepage": "https://mc-auth.com",
"license": "GNU LGPLv3",
"keywords": [
"Minecraft",
"oAuth2",
"oAuth",
"Login",
"GDPR",
"API",
"restful",
"rest"
],
"author": {
"name": "Christian Koop",
"url": "https://github.com/SpraxDev",
"email": "contact@sprax2013.de"
},
"contributors": [
{
"name": "Jonas",
"url": "https://github.com/JNSAPH"
},
{
"name": "Brianna O'Keefe",
"url": "https://github.com/briannastatic"
}
],
"repository": {
"type": "git",
"url": "git+https://github.com/Mc-Auth-com/Mc-Auth.git"
},
"bugs": {
"url": "https://github.com/Mc-Auth-com/Mc-Auth/issues"
},
"main": "dist/index.js",
"scripts": {
"build": "rm -Rf ./dist/ && tsc",
"build:dev": "npm run build -- --sourceMap",
"test": "jest --coverage",
"dev": "nodemon --ext ts,html,json,txt --watch ./src/ --watch ./resources/lang/ --watch ./resources/web/dynamic/ --watch ./resources/email/ --exec \"ts-node src/index.ts\"",
"docker:build": "docker build --pull --rm .",
"docker:build:prod": "npm run docker:build -- --target prod --tag mc-auth-web:latest",
"docker:build:dev": "npm run docker:build -- --target dev --tag mc-auth-web:dev --build-arg BUILD_SCRIPT=\"build:dev\"",
"docker:dev": "npm run docker:build:dev && (docker stop mc-auth-web-dev;docker rm mc-auth-web-dev;echo '') && docker run --network host --name mc-auth-web-dev --cpus 2 --memory 256M --volume $(realpath ./storage/):/app/storage/ mc-auth-web:dev"
},
"engines": {
"node": ">=22.0.0",
"npm": ">=10.0.0"
},
"dependencies": {
"@spraxdev/node-commons": "github:SpraxDev/Node-Commons#b29223e6d0f48e7c217f628d818251cbfeb62342",
"connect-pg-simple": "^10.0.0",
"cookie-parser": "^1.4.6",
"ejs": "^3.1.10",
"escape-html": "^1.0.3",
"express": "^4.21.0",
"express-session": "^1.18.0",
"jsonwebtoken": "^9.0.2",
"minecraft-api-client": "github:SpraxDev/Node-Minecraft-API-Client#21ae7d33752ff6839be2b38c7735fde33552cff5",
"moment": "^2.30.1",
"morgan": "^1.10.0",
"node-cache": "^5.1.2",
"nodemailer": "^6.9.15",
"pg": "^8.12.0",
"rate-limiter-flexible": "^5.0.3",
"rotating-file-stream": "3.2.1",
"sharp": "^0.33.5"
},
"devDependencies": {
"@tsconfig/node22": "^22.0.0",
"@types/connect-pg-simple": "^7.0.3",
"@types/cookie-parser": "^1.4.7",
"@types/ejs": "^3.1.5",
"@types/express": "^4.17.21",
"@types/express-session": "^1.18.0",
"@types/jest": "^29.5.13",
"@types/jsonwebtoken": "^9.0.6",
"@types/morgan": "^1.9.9",
"@types/node": "^22.5.5",
"@types/nodemailer": "^6.4.15",
"@types/pg": "^8.11.10",
"@types/request": "^2.48.12",
"jest": "^29.7.0",
"nodemon": "^3.1.4",
"ts-jest": "^29.2.5",
"ts-node": "^10.9.2",
"typescript": "^5.6.2"
}
}