forked from describo/crate-builder-component
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
100 lines (100 loc) · 3.7 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
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
{
"name": "@describo/crate-builder-component",
"version": "0.80.0",
"description": "A VueJS component for assembling an RO-Crate",
"main": "./src/crate-builder/index.js",
"type": "module",
"files": [
"dist",
"src/crate-builder"
],
"scripts": {
"develop": "npm install && npm run update-dependencies && npm run start:elastic && vite && npm run stop:elastic",
"update-dependencies": "bash -x ./update-deps.sh",
"test": "./node_modules/.bin/vitest run",
"test:watch": "./node_modules/.bin/vitest watch",
"test:coverage": "./node_modules/.bin/vitest run --coverage",
"build": "npm run build:vue",
"build:vue": "vite build",
"start:elastic": "docker compose up -d && npm run load:datapacks",
"load:datapacks": "sleep 10 && node ./load-data-packs.cjs",
"stop:elastic": "docker compose stop ; docker compose rm -f",
"storybook": "storybook dev -p 6006",
"storybook:hu": "STORYBOOK_LANG=hu storybook dev -p 6006",
"build-storybook": "storybook build",
"docs": "npx typedoc --skipErrorChecking && npx serve docs"
},
"repository": {
"type": "git",
"url": "git+https://github.com/describo/crate-builder-component.git"
},
"author": "Marco La Rosa",
"license": "MIT",
"bugs": {
"url": "https://github.com/describo/crate-builder-component/issues"
},
"homepage": "https://github.com/describo/crate-builder-component#readme",
"dependencies": {
"@codemirror/lang-javascript": "^6.2.2",
"@codemirror/state": "^6.4.1",
"@codemirror/theme-one-dark": "^6.1.2",
"@describo/data-packs": "^0.13.1",
"@element-plus/theme-chalk": "^2.2.16",
"@fortawesome/fontawesome-free": "^6.6.0",
"@fortawesome/fontawesome-svg-core": "^6.6.0",
"@fortawesome/free-brands-svg-icons": "^6.6.0",
"@fortawesome/free-regular-svg-icons": "^6.6.0",
"@fortawesome/free-solid-svg-icons": "^6.6.0",
"@fortawesome/vue-fontawesome": "^3.0.8",
"@terraformer/wkt": "^2.2.1",
"ajv": "^8.17.1",
"codemirror": "^6.0.1",
"dayjs": "^1.11.13",
"element-plus": "^2.8.1",
"i18next": "^23.14.0",
"leaflet": "^1.9.4",
"leaflet-area-select": "^1.1.0",
"lodash": "^4.17.21",
"lodash-es": "^4.17.21",
"pinia": "^2.2.2",
"tailwindcss": "^3.4.10",
"uuid": "^10.0.0",
"validate-iri": "^1.0.1",
"validator": "^13.12.0",
"vue": "^3.5.3",
"vue-router": "^4.4.3",
"vuex": "^4.1.0"
},
"devDependencies": {
"@storybook/addon-actions": "^8.2.9",
"@storybook/addon-docs": "^8.2.9",
"@storybook/addon-essentials": "^8.2.9",
"@storybook/addon-interactions": "^8.2.9",
"@storybook/addon-links": "^8.2.9",
"@storybook/addon-postcss": "^2.0.0",
"@storybook/testing-library": "^0.2.2",
"@storybook/vue3": "^8.2.9",
"@storybook/vue3-vite": "^8.2.9",
"@types/chance": "^1.1.6",
"@types/fs-extra": "^11.0.4",
"@types/validator": "^13.12.1",
"@vitejs/plugin-vue": "^5.1.3",
"@vitest/coverage-istanbul": "^2.0.5",
"autoprefixer": "^10.4.20",
"chance": "^1.1.12",
"esbuild": "^0.23.1",
"jsdoc": "^4.0.3",
"jsdom": "^25.0.0",
"minami": "^1.2.3",
"postcss": "^8.4.45",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"regenerator-runtime": "^0.14.1",
"sass": "^1.78.0",
"storybook": "^8.2.9",
"taffydb": "^2.7.3",
"typedoc": "^0.26.6",
"vite": "^5.4.3",
"vitest": "^2.0.5"
}
}