forked from aws-samples/aws-sdk-js-notes-app
-
Notifications
You must be signed in to change notification settings - Fork 15
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 975 Bytes
/
package.json
File metadata and controls
37 lines (37 loc) · 975 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
{
"name": "@aws-sdk-notes-app/backend",
"version": "1.0.0",
"private": true,
"description": "Backend for notes app created using modular AWS SDK for JavaScript",
"dependencies": {
"@aws-sdk/client-dynamodb": "3.245.0",
"@aws-sdk/util-dynamodb": "3.245.0",
"nodemon": "^3.1.7"
},
"scripts": {
"build": "tsc --noEmit && node build.js",
"build:backend": "cd .. && yarn build:backend",
"hotreload": "nodemon --watch src --ext '*' --exec 'node build.js'",
"cdk": "cd .. && yarn cdk"
},
"keywords": [
"modular",
"aws",
"JavaScript",
"TypeScript",
"SDK",
"v3"
],
"author": "Kamat, Trivikram",
"license": "MIT",
"devDependencies": {
"@types/aws-lambda": "^8.10.64",
"@types/node": "^18.11.18",
"@typescript-eslint/eslint-plugin": "^5.48.1",
"@typescript-eslint/parser": "^5.48.1",
"esbuild": "0.12.17",
"eslint": "^8.31.0",
"typescript": "~4.9.4"
},
"sideEffects": false
}