-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
28 lines (28 loc) · 818 Bytes
/
package.json
File metadata and controls
28 lines (28 loc) · 818 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
27
28
{
"private": true,
"version": "1.1.3",
"name": "dropstack-deploy",
"description": "DropStack web deploy",
"engines": {
"node": "^6"
},
"dependencies": {
"eventsource": "^1.0.5",
"form-data": "^2.3.1",
"fs-extra": "^4.0.1",
"gunzip-maybe": "^1.4.1",
"memory-stream": "0.0.3",
"parse-github-url": "^1.0.0",
"reunify": "^4.5.2",
"tar-fs": "^1.15.3",
"valid-url": "^1.0.9"
},
"scripts": {
"export": "NODE_ENV=production reunify export",
"export:dev": "NODE_ENV=production reunify export -d",
"export:package": "NODE_ENV=production reunify export -p",
"export:package:dev": "NODE_ENV=production reunify export -p -d",
"dev": "PORT=8080 NODE_ENV=development reunify serve",
"start": "PORT=80 NODE_ENV=production reunify serve --silent"
}
}