-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
41 lines (41 loc) · 1.1 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
{
"name": "candidate-apointment-api",
"version": "1.0.0",
"description": "Sample API services to create, modify and delete appointments",
"main": "index.js",
"scripts": {
"lint": "eslint 'src/**/*.ts'",
"lint:fix": "eslint --fix 'src/**/*.ts'",
"preinstall": "sls dynamodb install -c serverless.local.yml",
"start": "sls offline start -c serverless.local.yml --verbose",
"predeploy": "sls deploy --config serverless.data.yml --verbose",
"deploy": "sls deploy --verbose"
},
"keywords": [
"CRUD",
"API",
"REST",
"Serverless",
"Typescript",
"DynamoDB",
"AWS",
"mdrijwan"
],
"author": "Md Rijwan Razzaq Matin",
"license": "ISC",
"devDependencies": {
"@types/aws-sdk": "^2.7.0",
"@types/node": "^17.0.2",
"@typescript-eslint/eslint-plugin": "5.8.1",
"@typescript-eslint/parser": "5.8.1",
"eslint": "8.6.0",
"prettier": "2.5.1",
"serverless-dynamodb-local": "^0.2.40",
"serverless-offline": "^8.3.1",
"serverless-plugin-typescript": "^1.2.0",
"typescript": "^3.9.10"
},
"dependencies": {
"uuid": "^8.3.2"
}
}