-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
63 lines (63 loc) · 1.76 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
{
"name": "@ulb-darmstadt/shacl-form",
"version": "1.6.5",
"description": "SHACL form generator",
"main": "dist/form-default.js",
"module": "dist/form-default.js",
"types": "dist/form-default.d.ts",
"files": [
"dist",
"src"
],
"repository": {
"type": "git",
"url": "https://github.com/ULB-Darmstadt/shacl-form"
},
"author": "ULB Darmstadt",
"license": "MIT",
"homepage": "https://ulb-darmstadt.github.io/shacl-form/",
"keywords": [
"SHACL",
"form",
"generator",
"RDF",
"metadata",
"editor",
"viewer"
],
"scripts": {
"build": "npm run clean && webpack --mode production",
"clean": "rimraf dist",
"test": "echo \"no tests specified\" && exit 0",
"serve": "webpack serve --mode development"
},
"devDependencies": {
"@types/jsonld": "^1.5.15",
"@types/leaflet": "^1.9.12",
"@types/leaflet-editable": "^1.2.6",
"@types/leaflet.fullscreen": "^3.0.2",
"@types/mapbox__mapbox-gl-draw": "^1.4.6",
"@types/n3": "^1.21.0",
"@types/uuid": "^10.0.0",
"raw-loader": "^4.0.2",
"rimraf": "^6.0.1",
"ts-loader": "^9.5.1",
"typescript": "^5.6.2",
"webpack": ">=5.94.0",
"webpack-cli": "^5.1.4",
"webpack-dev-server": "^5.1.0"
},
"dependencies": {
"@mapbox/mapbox-gl-draw": "^1.4.3",
"bootstrap": "^5.3.3",
"jsonld": "^8.3.2",
"leaflet": "^1.9.4",
"leaflet-editable": "^1.3.0",
"leaflet.fullscreen": "^3.0.2",
"mapbox-gl": "^3.3.0",
"mdui": "^2.1.2",
"n3": "^1.21.1",
"shacl-engine": "^1.0.1",
"uuid": "^10.0.0"
}
}