-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 853 Bytes
/
Copy pathpackage.json
File metadata and controls
34 lines (34 loc) · 853 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
{
"name": "devgrid-auth",
"version": "1.0.0",
"description": "DevGrid Authentication Service - Minimal GitHub OAuth Infrastructure",
"main": "dist/main.js",
"type": "commonjs",
"scripts": {
"build": "nest build",
"start": "nest start",
"start:prod": "node dist/main",
"dev": "nest start --watch",
"clean": "rm -rf dist"
},
"keywords": ["authentication", "oauth", "github"],
"author": "DevGrid",
"license": "MIT",
"dependencies": {
"@nestjs/common": "^10.3.0",
"@nestjs/core": "^10.3.0",
"@nestjs/platform-express": "^10.3.0",
"@nestjs/cli": "^10.3.0",
"reflect-metadata": "^0.1.13",
"rxjs": "^7.8.1",
"dotenv": "^16.3.1",
"typescript": "^5.3.3"
},
"devDependencies": {
"@types/node": "^20.10.6",
"ts-loader": "^9.5.1"
},
"engines": {
"node": ">=18.0.0"
}
}