-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
25 lines (25 loc) · 864 Bytes
/
package.json
File metadata and controls
25 lines (25 loc) · 864 Bytes
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
{
"name": "api",
"type": "module",
"scripts": {
"code:check": "eslint .",
"start": "supervisor -- index.js -w ./",
"setup:layers:v1": "cd lambda/layers/v1 && npm install && cd ../../../",
"setup:functions": "cd lambda/functions && npm install && cd ../../",
"setup:http": "cd http && npm install && cd ../",
"setup:main": "npm install",
"setup:migrator": "cd migrator && npm install && cd ../",
"setup": "npm run setup:layers:v1 && npm run setup:functions && npm run setup:http && npm run setup:migrator && npm run setup:main ",
"migrate": "node migrate.js"
},
"dependencies": {
"supervisor": "^0.12.0"
},
"devDependencies": {
"eslint": "^8.14.0",
"eslint-config-standard": "^17.0.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-n": "^15.2.0",
"eslint-plugin-promise": "^6.0.0"
}
}