-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
59 lines (59 loc) · 1.88 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
{
"name": "homepage",
"version": "0.0.2",
"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 -r dotenv/config 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 drivereu/homepage",
"docker:publish": "docker push drivereu/homepage",
"docker": "npm run docker:local && npm run docker:publish",
"docker:local": "npm run docker:build && npm run docker:tag",
"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",
"dotenv": "^10.0.0",
"koa": "^2.13.3",
"koa-static": "^5.0.0",
"material-icons": "^1.6.1",
"materialize-css": "^1.0.0",
"mithril": "^2.0.4",
"redbird": "^0.10.0"
},
"devDependencies": {
"@types/koa": "^2.13.4",
"@types/materialize-css": "^1.0.11",
"@types/mithril": "^2.0.8",
"autoprefixer": "^10.3.6",
"concurrently": "^6.2.2",
"cssnano": "^5.0.8",
"nodemon": "^2.0.13",
"parcel-bundler": "^1.12.5",
"rimraf": "^3.0.2",
"typescript": "^4.4.3"
}
}