forked from reshufflehq/reshuffle-prod-runtime
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
22 lines (22 loc) · 895 Bytes
/
package.json
File metadata and controls
22 lines (22 loc) · 895 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
{
"name": "reshuffle-prod-runtime",
"version": "0.0.1",
"description": "",
"scripts": {
"clean": "rm -rf backups logs node_modules package-lock.json runtime",
"start": "RESHUFFLE_INSTRUCTIONS_SOURCE=none node runtime/index.js",
"make": "git fetch && git rebase origin/master && img=${RESHUFFLE_RUNTIME_IMAGE}:`git rev-parse --short HEAD` && docker build -t $img . && echo $img",
"test": "img=${RESHUFFLE_RUNTIME_IMAGE}:`git rev-parse --short HEAD` && docker run -p 8000:8000 $img",
"push": "img=${RESHUFFLE_RUNTIME_IMAGE}:`git rev-parse --short HEAD` && docker push $img"
},
"author": "",
"license": "MIT",
"dependencies": {
"bluebird": "^3.7.2",
"reshuffle-eidr-connector": "^0.0.13",
"reshuffle-runtime-enterprise": "^0.0.25",
"aws-elasticsearch-connector": "^9.0.3",
"aws-sdk": "^2.831.0",
"@elastic/elasticsearch": "^7.10.0"
}
}