-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
45 lines (45 loc) · 1.3 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": "aws-serverless",
"version": "1.0.0",
"description": "AWS Serverless",
"main": "index.js",
"license": "MIT",
"scripts": {
"dev": "nodemon",
"start": "node -r ts-node/register/transpile-only -r tsconfig-paths/register ./index.js",
"build": "tsc -p tsconfig.prod.json",
"test": "jest",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage",
"lint": "eslint .",
"lint:fix": "eslint --fix ."
},
"devDependencies": {
"@types/dotenv-safe": "^8.1.2",
"@types/jest": "^26.0.24",
"@types/node": "^16.4.1",
"@typescript-eslint/eslint-plugin": "^4.28.4",
"@typescript-eslint/parser": "^4.28.4",
"eslint": "^7.31.0",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-config-prettier": "^8.3.0",
"eslint-import-resolver-typescript": "^2.4.0",
"eslint-plugin-import": "^2.23.4",
"eslint-plugin-prettier": "^3.4.0",
"jest": "^27.0.6",
"lint-staged": "^11.1.0",
"nodemon": "^2.0.12",
"prettier": "^2.3.2",
"serverless-offline": "^10.0.0",
"serverless-plugin-typescript": "^2.1.2",
"ts-jest": "^27.0.4",
"ts-node": "^10.1.0",
"tsconfig-paths": "^3.10.1",
"typescript": "^4.3.5"
},
"dependencies": {
"aws-lambda": "^1.0.7",
"aws-sdk": "^2.1209.0",
"dotenv-safe": "^8.2.0"
}
}