-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
37 lines (37 loc) · 998 Bytes
/
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
{
"name": "node-cognito-app",
"version": "1.0.0",
"description": "an aws cognito test project",
"main": "index.js",
"scripts": {
"build": "npx tsc",
"start": "node dist/index.js",
"dev": "concurrently \"npx tsc --watch\" \"nodemon -q dist/index.js\""
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"@types/aws-sdk": "^2.7.0",
"@types/body-parser": "^1.19.2",
"@types/dotenv": "^8.2.0",
"@types/express": "^4.17.14",
"@types/jwt-decode": "^3.1.0",
"@types/morgan": "^1.9.3",
"@types/node": "^18.11.12",
"concurrently": "^7.6.0",
"nodemon": "^2.0.20",
"typescript": "^4.9.4"
},
"dependencies": {
"@aws-sdk/client-dynamodb": "^3.229.0",
"@aws-sdk/credential-providers": "^3.229.0",
"amazon-cognito-identity-js": "^6.0.1",
"body-parser": "^1.20.1",
"dotenv": "^16.0.3",
"dynamoose": "^3.1.0",
"express": "^4.18.2",
"jwt-decode": "^3.1.2",
"morgan": "^1.10.0"
}
}