-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
21 lines (21 loc) · 801 Bytes
/
package.json
File metadata and controls
21 lines (21 loc) · 801 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
{
"name": "serverless-ruby-graphql",
"description": "",
"version": "0.1.0",
"dependencies": {
"serverless": "^1.46.1"
},
"devDependencies": {},
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/oriolgual/serverless-ruby-graphql.git"
},
"scripts": {
"bundle:deployment": "docker run --rm -v ${PWD}:/var/task lambci/lambda:build-ruby2.5 gem install bundler:2.0.2 --no-document --quiet --silent && bundle install --deployment --without=test:development --quiet",
"bundle:development": "rm -fr vendor && rm -fr .bundle && bundle install --quiet",
"deploy": "npm run deploy:dev",
"deploy:dev": "npm run bundle:deployment && npx sls deploy -s dev && npm run bundle:development ",
"invoke:local": "npx sls invoke local"
}
}