-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
50 lines (50 loc) · 1.33 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
{
"name": "sgid-test-app",
"version": "2.0.3",
"description": "This is an example node application that implements sgID's OAuth2 API.",
"main": "dist/index.js",
"engines": {
"node": ">=16.16"
},
"dependencies": {
"@opengovsg/sgid-client": "^2.0.0",
"cookie-parser": "^1.4.7",
"dotenv": "8.6.0",
"ejs": "3.1.10",
"express": "^4.21.1",
"helmet": "4.6.0",
"jsonwebtoken": "^9.0.1",
"node-cache": "^5.1.2",
"node-fetch": "2.6.7",
"node-jose": "^2.2.0",
"uuid": "^9.0.0"
},
"devDependencies": {
"@swc/core": "^1.3.60",
"@swc/helpers": "^0.5.1",
"@types/cookie-parser": "^1.4.3",
"@types/express": "^4.17.17",
"@types/node": "^20.1.7",
"@types/uuid": "^9.0.1",
"nodemon": "^3.0.1",
"regenerator-runtime": "^0.13.11",
"ts-node": "^10.9.1",
"typescript": "^5.0.4"
},
"scripts": {
"start": "node -r dotenv/config dist/index",
"build": "tsc",
"start:build": "npm run build && npm run start",
"dev": "nodemon -w . -w .env -r dotenv/config index.ts"
},
"repository": {
"type": "git",
"url": "git+https://github.com/datagovsg/sgID-test-app.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/datagovsg/sgID-test-app/issues"
},
"homepage": "https://github.com/datagovsg/sgID-test-app#readme"
}