forked from graphile/postgraphile-lambda-example
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
26 lines (26 loc) · 871 Bytes
/
package.json
File metadata and controls
26 lines (26 loc) · 871 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
26
{
"scripts": {
"webpack": "webpack",
"phase1": ". ./.env && scripts/build",
"phase2": ". ./.env && scripts/generate-cache",
"phase3": ". ./.env && scripts/bundle",
"phase4": ". ./.env && scripts/test",
"build": ". ./.env && scripts/build && scripts/generate-cache && scripts/bundle",
"sam": ". ./.env && scripts/build && scripts/generate-cache && scripts/bundle && scripts/sam",
"test": ". ./.env && scripts/build && scripts/generate-cache && scripts/bundle && scripts/test",
"deploy": "scripts/serverless"
},
"dependencies": {
"aws-serverless-express": "^3.3.5",
"cors": "^2.8.5",
"pg": "7.4.1",
"postgraphile": "v4.2",
"postgraphile-core": "^4.2.0"
},
"devDependencies": {
"aws-sdk": "^2.389.0",
"serverless-content-encoding": "^1.1.0",
"webpack": "4.17.2",
"webpack-cli": "3.1.0"
}
}