-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
64 lines (64 loc) · 1.76 KB
/
package.json
File metadata and controls
64 lines (64 loc) · 1.76 KB
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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
{
"name": "simple-portfolio-server",
"version": "1.0.0",
"description": "Simple Portfolio Server",
"main": "index.js",
"scripts": {
"deploy": "npm run clean && serverless deploy --stage dev",
"start": "sls offline start",
"build": "npm run clean && tsc",
"clean": "rimraf lib .build .serverless coverage",
"test": "jest --forceExit --coverage --detectOpenHandles --verbose",
"lint": "eslint ./app ./test",
"openapi:gen": "redoc-cli bundle -o apidoc.html openapi.yml"
},
"pre-commit": [
"lint"
],
"dependencies": {
"http-status-codes": "^2.1.4",
"joi": "^17.4.0",
"lodash": "^4.17.21",
"twitter": "^1.7.1"
},
"devDependencies": {
"@shelf/jest-dynamodb": "^1.8.1",
"@types/aws-lambda": "^8.10.76",
"@types/jest": "^26.0.23",
"@types/lodash": "^4.14.168",
"@types/twitter": "^1.7.0",
"@typescript-eslint/eslint-plugin": "^4.22.0",
"@typescript-eslint/parser": "^4.22.0",
"aws-lambda": "^1.0.6",
"aws-sdk": "^2.897.0",
"eslint": "^7.25.0",
"jest": "^26.6.3",
"jest-s3": "^1.0.4",
"lambda-tester": "^4.0.1",
"rimraf": "^3.0.2",
"serverless-dynamodb-local": "^0.2.39",
"serverless-localstack": "^0.4.30",
"serverless-offline": "^5.12.1",
"serverless-plugin-typescript": "^1.1.9",
"serverless-s3-local": "^0.6.14",
"ts-jest": "^26.5.5",
"ts-node": "^8.9.1",
"tslint": "^6.1.2",
"typescript": "^4.2.4"
},
"repository": {
"type": "git"
},
"keywords": [
"Nodejs",
"TypeScript",
"ServerLess",
"AWS Lambda"
],
"author": "May",
"license": "ISC",
"bugs": {
"url": "https://github.com/Q-Angelo/aws-node-typescript-rest-api/issues"
},
"homepage": "https://github.com/Q-Angelo/aws-node-typescript-rest-api#readme"
}