-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
47 lines (47 loc) · 1.79 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
46
47
{
"name": "serverless",
"version": "1.0.0",
"description": "A project using the Serverless Framework, JavaScript, AWS Lambda, AWS API Gateway and GitLab",
"scripts": {
"start": "sls offline start --stage dev --httpPort 4000",
"package": "serverless package",
"deploy:staging": "serverless deploy --stage staging",
"deploy:production": "serverless deploy --stage production",
"lint": "eslint --ignore-path .gitignore .",
"lint:updated": "pipe-git-updated --ext=js -- eslint --ignore-path .gitignore",
"prettier-check": "prettier -c --ignore-path .gitignore \"**/*.{css,html,js,json,md,yaml,yml}\"",
"prettier-check:updated": "pipe-git-updated --ext=css --ext=html --ext=js --ext=json --ext=md --ext=yaml --ext=yml -- prettier -c",
"prettify": "prettier --write --ignore-path .gitignore \"**/*.{css,html,js,json,md,yaml,yml}\"",
"prettify:updated": "pipe-git-updated --ext=css --ext=html --ext=js --ext=json --ext=md --ext=yaml --ext=yml -- prettier --write"
},
"author": "Dhaval Laiya",
"license": "ISC",
"devDependencies": {
"@serverless/eslint-config": "^4.0.0",
"aws-sdk": "^2.1116.0",
"eslint": "^8.13.0",
"eslint-plugin-import": "^2.26.0",
"git-list-updated": "^1.2.1",
"prettier": "^2.6.2",
"serverless": "^2.59.0",
"serverless-jest-plugin": "^0.4.0",
"serverless-offline": "^8.1.0",
"serverless-plugin-common-excludes": "^4.0.0",
"serverless-plugin-include-dependencies": "^5.0.0",
"serverless-s3-local": "^0.6.22"
},
"jest": {
"testMatch": [
"**/?(*.)+(spec|test).[jt]s?(x)"
]
},
"eslintConfig": {
"extends": "@serverless/eslint-config/node",
"rules": {
"no-console": "warn",
"no-unused-vars": "warn",
"import/no-extraneous-dependencies": "off"
},
"root": true
}
}