-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 988 Bytes
/
package.json
File metadata and controls
39 lines (39 loc) · 988 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
39
{
"name": "game-score-api",
"version": "1.0.0",
"main": "index.js",
"scripts": {
"build": "tsc",
"start": "node dist/index.js",
"dev": "nodemon --watch src --ext ts --exec \"ts-node ./src/index.ts\"",
"lint": "eslint . --ext .ts",
"lint:fix": "eslint . --ext .ts --fix"
},
"keywords": [
"node",
"express",
"typescript",
"dynamodb"
],
"author": "Beau Bishop",
"license": "MIT",
"description": "An example REST API for managing game scores using AWS DynamoDB",
"dependencies": {
"@aws-sdk/client-dynamodb": "^3.812.0",
"@aws-sdk/lib-dynamodb": "^3.812.0",
"cors": "^2.8.5",
"dotenv": "^16.5.0",
"express": "^5.1.0"
},
"devDependencies": {
"@eslint/js": "^9.27.0",
"@types/cors": "^2.8.18",
"@types/express": "^5.0.2",
"@types/node": "^22.15.19",
"eslint": "^9.27.0",
"nodemon": "^3.1.10",
"ts-node": "^10.9.2",
"typescript": "^5.8.3",
"typescript-eslint": "^8.32.1"
}
}