-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
32 lines (32 loc) · 904 Bytes
/
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
{
"name": "aws-sam-apollo-server-layer",
"version": "1.0.0",
"description": "AWS SAM Apollo Server Lambda Layer Template",
"main": "index.js",
"scripts": {
"build": "npm run build --workspaces",
"sam": "sam local start-api",
"start:production": "npm run build && npm run sam",
"start:production:ci": "npm run build && npm run sam &",
"test": "jest",
"watch": "concurrently npm:watch:* npm:sam",
"watch:lambda": "npm run watch -w resources/lambda",
"watch:layer": "npm run watch -w resources/layer"
},
"author": "Juan Carlos Blanco Delgado <[email protected]>",
"license": "MIT",
"workspaces": [
"resources/lambda",
"resources/layer"
],
"engines": {
"node": "18.12.1",
"npm": "9.1.2"
},
"devDependencies": {
"@types/jest": "^29.2.4",
"concurrently": "^7.6.0",
"jest": "^29.3.1",
"node-fetch": "^2.6.7"
}
}