-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
37 lines (37 loc) · 1.07 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
{
"name": "serverless-nodejs-starter",
"version": "1.0.0",
"description": "A Node.js starter for Serverless Framework with ESNext and TypeScript support",
"main": "src/handlers/main.js",
"scripts": {
"test": "jest",
"eslint": "eslint .",
"prettier-format": "prettier --config .prettierrc.json 'src/**/*.ts' --write"
},
"author": {
"name": "Renan William Alves de Paula",
"email": "[email protected]"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/renanwilliam/serverless-nodejs-starter.git"
},
"devDependencies": {
"@types/aws-lambda": "^8.10.62",
"@types/jest": "^26.0.14",
"@typescript-eslint/eslint-plugin": "^5.30.0",
"@typescript-eslint/parser": "^5.30.0",
"esbuild": "^0.14.47",
"eslint": "^8.18.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-jest": "^26.5.3",
"jest": "^28.1.1",
"prettier": "^2.7.1",
"serverless": "^3.19.0",
"serverless-esbuild": "^1.31.0",
"ts-jest": "^28.0.5",
"typescript": "^4.7.4"
},
"dependencies": {}
}