-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
70 lines (70 loc) · 2.09 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
{
"name": "ld-explorer",
"version": "0.1.1",
"private": true,
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/gchq/ld-explorer/issues"
},
"scripts": {
"dev": "vite dev --host",
"build": "vite build",
"preview": "vite preview",
"check": "svelte-kit sync && svelte-check --tsconfig ./tsconfig.json",
"check:watch": "svelte-kit sync && svelte-check --tsconfig ./tsconfig.json --watch",
"test": "vitest",
"test:unit+component": "vitest run --coverage",
"test:e2e": "playwright test",
"test:e2e:update-snapshots": "playwright test --update-snapshots",
"lint": "eslint .",
"format": "prettier --write .",
"copyright:check": "./scripts/check-copyright.sh",
"copyright:write": "./scripts/add-copyright.sh"
},
"devDependencies": {
"@axe-core/playwright": "^4.10.1",
"@comunica/bindings-factory": "^3.3.0",
"@comunica/query-sparql": "^4.1.0",
"@comunica/types": "^4.1.0",
"@playwright/test": "^1.51.1",
"@sveltejs/adapter-static": "^3.0.8",
"@sveltejs/kit": "^2.20.5",
"@sveltejs/vite-plugin-svelte": "^5.0.3",
"@tailwindcss/vite": "^4.1.3",
"@testing-library/jest-dom": "^6.6.3",
"@testing-library/svelte": "^5.2.7",
"@testing-library/user-event": "^14.6.1",
"@types/cytoscape": "^3.21.9",
"@types/eslint": "^9.6.1",
"@ukic/fonts": "^2.6.6",
"@ukic/web-components": "^2.37.1",
"@vitest/coverage-v8": "^3.1.1",
"asynciterator": "^3.9.0",
"autoprefixer": "^10.4.21",
"clsx": "^2.1.1",
"cytoscape": "^3.31.2",
"eslint": "^9.24.0",
"eslint-config-prettier": "^10.1.2",
"eslint-plugin-prettier": "^5.2.6",
"eslint-plugin-svelte": "^3.5.1",
"globals": "^16.0.0",
"jsdom": "^26.1.0",
"jsonld-streaming-parser": "^5.0.0",
"n3": "^1.25.1",
"postcss": "^8.5.3",
"prettier": "^3.5.3",
"prettier-plugin-svelte": "^3.3.3",
"rdfa-streaming-parser": "^3.0.1",
"shadow-dom-testing-library": "^1.12.0",
"svelte": "^5.26.2",
"svelte-check": "^4.1.6",
"tailwindcss": "^4.0.9",
"tslib": "^2.8.1",
"typescript": "^5.8.3",
"typescript-eslint": "^8.29.1",
"uuid": "^11.1.0",
"vite": "^6.2.6",
"vitest": "^3.0.7"
},
"type": "module"
}