-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 1.16 KB
/
package.json
File metadata and controls
42 lines (42 loc) · 1.16 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
{
"name": "serverless-shallot-rest-starter",
"version": "1.0.0",
"description": "A boilerplate for REST APIs on AWS Lambda with the Serverless Framework",
"license": "MIT",
"keywords": [
"typescript",
"lambda",
"aws",
"serverless",
"rest"
],
"scripts": {
"offline": "NODE_ENV='development' sls offline start",
"start": "npm run offline"
},
"dependencies": {
"@shallot/rest-wrapper": "^1.1.1",
"http-errors": "^1.8.0"
},
"devDependencies": {
"@types/aws-lambda": "^8.10.67",
"@types/http-errors": "^1.8.0",
"@types/node": "^14.14.14",
"@types/webpack-node-externals": "^2.5.0",
"@typescript-eslint/eslint-plugin": "^4.11.0",
"@typescript-eslint/parser": "^4.11.0",
"eslint": "^7.10.0",
"eslint-config-prettier": "^7.1.0",
"eslint-plugin-prettier": "^3.1.4",
"prettier": "^2.1.2",
"serverless": "^2.16.1",
"serverless-offline": "^6.1.5",
"serverless-stage-manager": "^1.0.5",
"serverless-webpack": "^5.3.5",
"source-map-support": "^0.5.19",
"ts-loader": "^8.0.12",
"typescript": "^4.1.3",
"webpack": "^5.11.0",
"webpack-node-externals": "^2.5.2"
}
}