-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 946 Bytes
/
package.json
File metadata and controls
36 lines (36 loc) · 946 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
33
34
35
36
{
"name": "rustcon-api",
"version": "1.2.0",
"description": "RustCON API - Notifications, Current Versions...",
"type": "module",
"main": "dist/index.js",
"scripts": {
"dev": "tsc-watch --onSuccess \"node dist/index.js\"",
"build": "tsc",
"start": "node dist/index.js",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/RustCONxyz/api.git"
},
"author": "Kopter",
"license": "GPL-3.0-or-later",
"bugs": {
"url": "https://github.com/RustCONxyz/api/issues"
},
"homepage": "https://github.com/RustCONxyz/api#readme",
"dependencies": {
"@tsconfig/node20": "^20.1.2",
"dotenv": "^16.3.1",
"expo-server-sdk": "^3.7.0",
"express": "^4.18.2",
"mongoose": "^7.6.7",
"zod": "^3.22.4"
},
"devDependencies": {
"@types/express": "^4.17.21",
"tsc-watch": "^6.0.4",
"typescript": "^5.3.3"
}
}