-
Notifications
You must be signed in to change notification settings - Fork 17
Expand file tree
/
Copy pathpackage.json
More file actions
126 lines (126 loc) · 4.05 KB
/
package.json
File metadata and controls
126 lines (126 loc) · 4.05 KB
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
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
{
"name": "meta-configurator",
"version": "2.5.0",
"private": true,
"scripts": {
"dev": "vite",
"build": "run-p build-only",
"test:unit": "vitest",
"build-only": "vite build",
"type-check": "vue-tsc --noEmit -p tsconfig.vitest.json --composite false",
"lint:ts": "eslint --ext .jsx,.js,.ts,.tsx --ignore-path .eslintignore",
"lint:ls": "ls-lint",
"lint": "npm run lint:ts && npm run lint:ls",
"prettier": "prettier --write src/ --ignore-path .eslintignore",
"test": "vitest",
"test:cov": "vitest --coverage",
"prepare:e2e": "cp -r e2e/test-fixtures public",
"test:e2e": "npm-run-all prepare:e2e test:e2e:run",
"test:e2e:ui": "npm-run-all prepare:e2e test:e2e:run:ui",
"test:e2e:run": "playwright test --reporter=html",
"test:e2e:run:ui": "playwright test --headed",
"preview": "vite preview",
"prepare": "cd ../.. && husky install .husky",
"precommit": "pretty-quick --staged"
},
"dependencies": {
"@apidevtools/json-schema-ref-parser": "^15.3.1",
"@comake/rmlmapper-js": "^0.5.2",
"@fortawesome/fontawesome-svg-core": "^6.4.0",
"@fortawesome/free-brands-svg-icons": "^6.5.2",
"@fortawesome/free-regular-svg-icons": "^6.5.2",
"@fortawesome/free-solid-svg-icons": "^6.4.0",
"@fortawesome/vue-fontawesome": "^3.0.8",
"@jsonhero/schema-infer": "^0.1.5",
"@primevue/themes": "^4.2.5",
"@vue-flow/core": "^1.42.1",
"@vueuse/core": "^10.6.0",
"ajv": "^8.12.0",
"ajv-formats": "^2.1.1",
"axios": "^1.7.9",
"brace": "^0.11.1",
"csv-parse": "^5.5.6",
"cytoscape": "^3.33.1",
"cytoscape-cose-bilkent": "^4.1.0",
"dagrejs": "^0.2.1",
"fast-xml-parser": "^5.0.8",
"flowbite": "^1.6.5",
"handlebars": "^4.7.9",
"js-yaml": "^4.1.0",
"json-cst": "^1.2.0",
"json-pointer": "^0.6.2",
"json-schema-faker": "^0.5.9",
"json-schema-merge-allof": "^0.8.1",
"json-schema-ref-parser": "^9.0.9",
"json-schema-resolver": "^3.0.0",
"json-schema-to-typescript": "^15.0.4",
"jsonata": "^2.0.6",
"jsonc-parser": "^3.3.1",
"jsonld": "^9.0.0",
"lodash": "^4.17.21",
"n3": "^1.26.0",
"node-fetch": "^3.3.1",
"pinia": "^2.0.36",
"primeicons": "^7.0.0",
"primevue": "^4.2.5",
"quicktype-core": "^23.0.171",
"rdflib": "^2.3.6",
"showdown": "^2.1.0",
"sparqljs": "^3.7.3",
"vue": "^3.5.13",
"vue-flow": "^0.3.0",
"vue-router": "^4.3.2",
"yaml": "^2.8.3"
},
"devDependencies": {
"@ls-lint/ls-lint": "^2.2.3",
"@playwright/test": "^1.56.1",
"@rushstack/eslint-patch": "^1.2.0",
"@tsconfig/node18": "^18.2.4",
"@types/jsdom": "^21.1.1",
"@types/json-pointer": "^1.0.31",
"@types/jsonata": "^1.5.1",
"@types/jsonld": "^1.5.15",
"@types/n3": "^1.26.1",
"@types/node": "^18.16.8",
"@types/showdown": "^2.0.6",
"@types/sparqljs": "^3.1.12",
"@types/yaml": "^1.9.7",
"@typescript-eslint/eslint-plugin": "^5.59.0",
"@vitejs/plugin-vue": "^4.2.3",
"@vitejs/plugin-vue-jsx": "^3.0.1",
"@vitest/coverage-c8": "^0.30.1",
"@vue/eslint-config-prettier": "^7.1.0",
"@vue/eslint-config-typescript": "^11.0.3",
"@vue/test-utils": "^2.3.2",
"@vue/tsconfig": "^0.8.1",
"autoprefixer": "^10.4.14",
"editorconfig-checker": "5.0.1",
"eslint": "^8.39.0",
"eslint-config-standard-with-typescript": "^34.0.1",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-n": "^15.7.0",
"eslint-plugin-promise": "^6.1.1",
"eslint-plugin-vue": "^9.11.0",
"husky": "^9.1.7",
"jsdom": "^22.0.0",
"json-schema-to-ts": "^2.8.2",
"lint-staged": "^15.4.1",
"npm-run-all": "^4.1.5",
"playwright": "^1.56.1",
"postcss": "^8.4.23",
"prettier": "^2.8.7",
"pretty-quick": "^3.1.3",
"start-server-and-test": "^2.0.11",
"tailwindcss": "^3.3.2",
"typescript": "^5.0.4",
"vite": "^4.5.9",
"vite-plugin-node-polyfills": "^0.23.0",
"vitest": "^0.30.1",
"vue-tsc": "^2.2.0"
},
"lint-staged": {
"*.js": "eslint --cache --fix",
"*.{js,css,md}": "prettier --write"
}
}