-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
65 lines (65 loc) · 2.13 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
{
"name": "lessons-learned-framework",
"version": "0.0.1",
"description": "Capture, store and share your learned lessons in a simple to use web application.",
"scripts": {
"clean": "rimraf ./public ./.cache ./dist",
"start": "concurrently \"npm run serve\" \"parcel ./src/index.html\"",
"build": "parcel build ./src/index.html --out-dir public",
"build:domain": "npm run clean && npm run build",
"link": "npm link mithril-ui-form",
"serve": "rest-easy-loki",
"keycloak": "docker-compose up -d -f ./docker/docker-compose.yaml",
"docker:build": "docker build -t l3crisis .",
"docker:tag": "docker tag l3crisis drivereu/l3crisis",
"docker:publish": "docker push drivereu/l3crisis",
"docker": "npm run docker:local && npm run docker:publish",
"docker:local": "npm run docker:build && npm run docker:tag",
"docker:run": "docker run --name l3 -it -p 3000:3000 l3crisis",
"docker:sh": "docker run -it l3crisis sh"
},
"repository": {
"type": "git",
"url": "git+https://github.com/DRIVER-EU/lessons-learned-framework.git"
},
"keywords": [
"CMS",
"REST",
"database",
"lokijs",
"dynamic",
"forms"
],
"author": "Erik Vullings <[email protected]> (http://www.tno.nl)",
"license": "MIT",
"bugs": {
"url": "https://github.com/DRIVER-EU/lessons-learned-framework/issues"
},
"homepage": "https://github.com/DRIVER-EU/lessons-learned-framework#readme",
"dependencies": {
"base64-js": "^1.5.1",
"js-sha256": "^0.9.0",
"keycloak-js": "10.0.2",
"leaflet": "^1.7.1",
"leaflet-draw": "^1.0.4",
"material-icons": "^0.6.0",
"materialize-css": "^1.0.0",
"mithril": "^2.0.4",
"mithril-leaflet": "^0.4.3",
"mithril-materialized": "^0.19.0",
"mithril-ui-form": "^0.9.2",
"rest-easy-loki": "^0.7.6",
"slimdown-js": "^0.4.1"
},
"devDependencies": {
"@types/leaflet": "^1.7.0",
"@types/lokijs": "^1.5.4",
"@types/materialize-css": "^1.0.8",
"@types/mithril": "^2.0.7",
"concurrently": "^6.0.1",
"cssnano": "^4.1.11",
"parcel-bundler": "1.12.5",
"rimraf": "^3.0.2",
"typescript": "^4.2.4"
}
}