This repository has been archived by the owner on Nov 23, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 28
/
package.json
70 lines (70 loc) · 2.25 KB
/
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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
{
"name": "exoframe-server",
"version": "6.2.3",
"description": "Exoframe is a self-hosted tool that allows simple one-command deployments using Docker",
"main": "bin/server-core.js",
"bin": "bin/exoframe-server.js",
"scripts": {
"start": "node index.js",
"watch": "nodemon --watch src/ index.js",
"docker:start": "docker-compose -f docker/docker-compose.yml up",
"docker:exec": "docker-compose -f docker/docker-compose.yml exec server",
"docker:cleanup": "docker rm -f exoframe-server; docker rm -f exoframe-traefik",
"cleanup": "yarn docker:cleanup",
"lint": "eslint src/ test/ bin/exoframe-server.js",
"test": "NODE_ENV=testing jest --ci --runInBand --forceExit --coverage --silent",
"build-bundle": "ncc build src/index.js -o dist",
"prepare-build": "cp dist/index.js bin/server-core.js && cp dist/runner.js bin/runner.js && cp dist/home.html bin/home.html",
"build": "yarn build-bundle && yarn prepare-build"
},
"files": [
"bin/exoframe-server.js",
"bin/server-core.js",
"bin/assets/home.html",
"bin/assets/runner.js"
],
"repository": "git@github.com:exoframejs/exoframe-server.git",
"author": "Tim Ermilov <yamalight@gmail.com>",
"license": "MIT",
"devDependencies": {
"@zeit/ncc": "^0.22.1",
"babel-eslint": "^10.0.3",
"cors": "^2.8.4",
"dockerode": "^3.2.0",
"eslint": "^7.0.0",
"eslint-config-prettier": "^6.11.0",
"eslint-config-standard": "^14.1.1",
"eslint-plugin-import": "^2.20.2",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^3.1.3",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-standard": "^4.0.1",
"exoframe-faas": "^1.0.1",
"fastify": "^2.14.1",
"fastify-auth": "^0.7.2",
"get-port": "^5.0.0",
"highland": "^2.13.5",
"jest": "^26.0.1",
"js-yaml": "^3.12.0",
"jsonwebtoken": "^8.3.0",
"lodash": "^4.17.15",
"lokijs": "^1.5.8",
"mkdirp": "^1.0.4",
"nock": "^12.0.3",
"node-fetch": "^2.6.0",
"nodemon": "^2.0.3",
"prettier": "^2.0.5",
"rimraf": "^3.0.0",
"semver-compare": "^1.0.0",
"signale": "^1.3.0",
"sshpk": "^1.14.2",
"tar-fs": "^2.0.1",
"uuid": "^8.0.0"
},
"jest": {
"testEnvironment": "node"
},
"engines": {
"node": ">= 12"
}
}