forked from DRIVER-EU/homepage
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
73 lines (73 loc) · 2.7 KB
/
package.json
File metadata and controls
73 lines (73 loc) · 2.7 KB
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
71
72
73
{
"name": "homepage",
"version": "0.1.0",
"description": "A reverse proxy and home page combined, offering easy access to all services.",
"main": "index.js",
"scripts": {
"production": "node proxy.js",
"clean": "rimraf ./public ./.cache ./dist",
"start": "concurrently \"nodemon proxy.js\" \"npm run dev\"",
"website": "parcel index.html",
"build": "parcel build index.html --out-dir ./public",
"dev": "parcel index.html --out-dir ./public",
"build:domain": "npm run clean && npm run build",
"docker:build": "docker build -t homepage .",
"docker:tag": "docker tag homepage strategyeu/homepage:0.1.0",
"docker:tag:latest": "docker tag homepage strategyeu/homepage:latest",
"docker:publish": "docker push strategyeu/homepage:0.1.0",
"docker:publish:latest": "docker push strategyeu/homepage:latest",
"docker:local": "npm run docker:build && npm run docker:tag && npm run docker:tag:latest",
"docker": "npm run docker:local && npm run docker:publish && npm run docker:publish:latest",
"docker:run": "docker run --name home -it -p 80:80 homepage",
"docker:sh": "docker run -it homepage sh"
},
"repository": {
"type": "git",
"url": "git+https://github.com/DRIVER-EU/homepage.git"
},
"keywords": [
"reverse",
"proxy",
"redbird"
],
"author": "Erik Vullings <erik.vullings@gmail.com> (http://www.tno.nl)",
"license": "MIT",
"bugs": {
"url": "https://github.com/DRIVER-EU/homepage/issues"
},
"homepage": "https://github.com/DRIVER-EU/homepage#readme",
"dependencies": {
"@koa/cors": "^3.1.0",
"koa": "^2.13.1",
"koa-static": "^5.0.0",
"material-icons": "^0.5.2",
"materialize-css": "^1.0.0",
"mithril": "^2.0.4",
"redbird": "^0.10.0"
},
"devDependencies": {
"@babel/core": "7.12.10",
"@babel/plugin-proposal-class-properties": "7.12.1",
"@babel/plugin-proposal-decorators": "7.12.12",
"@babel/plugin-proposal-export-namespace-from": "7.12.1",
"@babel/plugin-proposal-function-sent": "7.12.1",
"@babel/plugin-proposal-json-strings": "7.12.1",
"@babel/plugin-proposal-numeric-separator": "7.12.7",
"@babel/plugin-proposal-optional-chaining": "7.12.7",
"@babel/plugin-proposal-throw-expressions": "7.12.1",
"@babel/plugin-syntax-dynamic-import": "7.8.3",
"@babel/plugin-syntax-import-meta": "7.10.4",
"@babel/preset-env": "7.12.11",
"@babel/preset-typescript": "7.12.7",
"@types/koa": "^2.11.7",
"@types/materialize-css": "^1.0.8",
"@types/mithril": "^2.0.6",
"autoprefixer": "^10.2.3",
"concurrently": "^5.3.0",
"cssnano": "^4.1.10",
"nodemon": "^2.0.7",
"parcel-bundler": "^1.12.4",
"rimraf": "^3.0.2",
"typescript": "^4.1.3"
}
}