-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 1017 Bytes
/
package.json
File metadata and controls
38 lines (38 loc) · 1017 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
37
38
{
"name": "maxmind-self-api",
"version": "2.0.0",
"description": "MaxMind GeoIP API with NestJS",
"private": true,
"scripts": {
"build": "nest build",
"start": "nest start",
"start:dev": "nest start --watch",
"start:debug": "nest start --debug --watch",
"start:prod": "node dist/main"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Kwabang/maxmind-self-api.git"
},
"author": "Kwabang",
"license": "MIT",
"bugs": {
"url": "https://github.com/Kwabang/maxmind-self-api/issues"
},
"homepage": "https://github.com/Kwabang/maxmind-self-api#readme",
"dependencies": {
"@nestjs/common": "^10.0.0",
"@nestjs/core": "^10.0.0",
"@nestjs/platform-express": "^10.0.0",
"@nestjs/schedule": "^4.0.0",
"maxmind": "^4.3.18",
"reflect-metadata": "^0.2.0",
"rxjs": "^7.8.1"
},
"devDependencies": {
"@nestjs/cli": "^11.0.14",
"@types/express": "^4.17.17",
"@types/node": "^20.3.1",
"typescript": "^5.1.3"
}
}