-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
32 lines (32 loc) · 846 Bytes
/
package.json
File metadata and controls
32 lines (32 loc) · 846 Bytes
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
{
"name": "mod-updates",
"version": "1.0.0",
"description": "A server for Minecraft modders that manages mod updates. (inspiration)",
"main": "src/index.js",
"repository": "https://github.com/theLeialoha/mod-update-server.git",
"author": "Leialoha",
"license": "All Rights Reserved",
"private": true,
"dependencies": {
"express": "^4.21.2",
"express-async-handler": "^1.2.0",
"mongodb": "^6.12.0",
"mongoose": "^8.15.1",
"uuid": "^11.0.3",
"uuid-validate": "^0.0.3"
},
"devDependencies": {
"@types/express": "^5.0.0",
"@types/node": "^22.10.2",
"@types/uuid": "^10.0.0",
"@types/uuid-validate": "^0.0.3",
"dotenv": "^16.4.7",
"nodemon": "^3.1.9",
"typescript": "^5.7.2"
},
"scripts": {
"dev": "nodemon",
"build": "tsc",
"start": "node dist/index.js"
}
}