forked from DRIVER-EU/lessons-learned-framework
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
72 lines (72 loc) · 2.37 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
71
72
{
"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 ./.cache ./dist",
"cleanup": "npm run clean",
"dev": "npx rspack serve",
"build": "npx rspack build",
"build:domain": "npm run clean && npm run build",
"link": "pnpm link project-board-shared",
"link2": "npm link mithril-ui-form",
"start": "concurrently \"npm run serve\" \"npm run dev\"",
"serve": "node ./node_modules/rest-easy-loki/dist/cli.js --upload upload",
"keycloak": "docker compose -f ./docker/docker-compose.yaml up -d",
"docker:build": "docker buildx build -t l3crisis .",
"docker:tag": "docker tag l3crisis drivereu/l3crisis:nl",
"docker:publish": "docker push drivereu/l3crisis:nl",
"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": {
"dotenv": "^16.3.1",
"base64-js": "^1.5.1",
"js-sha256": "^0.10.1",
"keycloak-js": "23.0.4",
"leaflet": "^1.9.4",
"leaflet-draw": "^1.0.4",
"material-icons": "^1.13.12",
"materialize-css": "^1.0.0",
"mithril": "^2.2.2",
"mithril-leaflet": "^0.4.3",
"mithril-materialized": "^1.1.4",
"mithril-ui-form": "^1.10.4",
"mithril-ui-form-leaflet-plugin": "0.5.3",
"rest-easy-loki": "^1.5.5",
"slimdown-js": "^0.7.2"
},
"devDependencies": {
"@types/leaflet": "^1.9.8",
"@types/lokijs": "^1.5.14",
"@types/materialize-css": "^1.0.14",
"@types/mithril": "^2.2.6",
"concurrently": "^8.2.2",
"@rspack/cli": "0.5.1",
"@rspack/core": "^0.5.1",
"rimraf": "^5.0.5",
"ts-node": "^10.9.2",
"tslib": "^2.6.2",
"typescript": "^5.3.3"
}
}