-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
45 lines (45 loc) · 1.24 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
42
43
44
45
{
"name": "template",
"version": "1.0.0",
"description": "A boilerplate starter code for node js applications that can be deployed to aws lambda as an API",
"main": "handler.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"lint": "eslint . --ext .ts",
"lint:fix": "eslint . --ext .ts --fix",
"build": "tsc -p .",
"start": "nodemon src/local/local.ts",
"prod": "tsc -p . && node ./build/src/local/local.js"
},
"keywords": [
"boilerplate",
"node.js",
"lambda"
],
"author": "Daniel Munoz",
"license": "ISC",
"dependencies": {
"@types/cors": "^2.8.12",
"@types/express": "^4.17.13",
"@types/node": "^16.11.6",
"body-parser": "^1.19.0",
"cors": "^2.8.5",
"dotenv": "^10.0.0",
"express": "^4.17.1",
"nodemon": "^2.0.14",
"serverless-http": "^2.7.0",
"ts-node": "^10.4.0",
"typescript": "^4.4.4",
"winston": "^3.3.3"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^5.3.0",
"@typescript-eslint/parser": "^5.3.0",
"eslint": "^8.1.0",
"eslint-config-airbnb-typescript": "^14.0.1",
"eslint-plugin-import": "^2.25.2",
"serverless": "^2.65.0",
"serverless-offline": "^8.2.0",
"ts-node-dev": "^1.1.8"
}
}