-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 1.51 KB
/
package.json
File metadata and controls
43 lines (43 loc) · 1.51 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
43
{
"name": "sls-http-layers",
"version": "1.0.0",
"main": "",
"scripts": {
"setup": "(npm i); (npm --prefix ./microservice i); (npm --prefix ./layers/logging/nodejs/node_modules/logging i); (npm --prefix ./layers/core/nodejs/node_modules/core i);",
"start:microservice": "npm --prefix ./microservice run start:microservice",
"deploy:lamdas:dev": "npm --prefix ./microservice run deploy:dev:all",
"deploy:lamdas:prod": "npm --prefix ./microservice run deploy:prod:all",
"deploy:layers:dev": "npm --prefix ./layers run deploy:dev:all",
"deploy:layers:prod": "npm --prefix ./layers run deploy:prod:all",
"build:swagger": "npm --prefix ./microservice run build:swagger",
"start:swagger": "npm --prefix ./microservice run start:swagger",
"lint": "eslint .",
"lint-fix": "eslint --fix .",
"format": "prettier --write \"**/*.js\""
},
"lint-staged": {
"*.js": [
"npm run format",
"git add"
]
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"keywords": [],
"author": "",
"license": "ISC",
"description": "",
"devDependencies": {
"eslint": "^7.32.0",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-import": "^2.24.2",
"eslint-plugin-prettier": "^4.0.0",
"husky": "^7.0.2",
"lint-staged": "^11.1.2",
"prettier": "^2.4.1"
}
}