-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
69 lines (69 loc) · 2.02 KB
/
Copy pathpackage.json
File metadata and controls
69 lines (69 loc) · 2.02 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
{
"name": "leaderboardv2",
"private": true,
"version": "0.0.1",
"type": "module",
"scripts": {
"dev": "vite dev",
"build": "vite build",
"preview": "vite preview",
"prepare": "svelte-kit sync || echo ''",
"check": "svelte-kit sync && svelte-check --tsconfig ./tsconfig.json",
"check:watch": "svelte-kit sync && svelte-check --tsconfig ./tsconfig.json --watch",
"lint": "run-s -c lint:format lint:js lint:style",
"lint:format": "prettier --check .",
"lint:js": "eslint \"**/*.{js,ts,svelte,css,html}\"",
"lint:style": "stylelint \"**/*.{css,svelte}\"",
"lint:style:fix": "stylelint --fix \"**/*.{css,svelte}\"",
"format": "prettier --write .",
"test:unit": "vitest run",
"test:unit:watch": "vitest",
"test:e2e": "playwright install && playwright test",
"test": "npm run test:unit && npm run test:e2e"
},
"devDependencies": {
"@eslint/compat": "^2.0.4",
"@eslint/css": "^1.3.0",
"@eslint/js": "^10.0.1",
"@html-eslint/eslint-plugin": "^0.61.0",
"@html-eslint/parser": "^0.61.0",
"@playwright/test": "^1.59.1",
"@sveltejs/adapter-auto": "^7.0.1",
"@sveltejs/adapter-static": "^3.0.10",
"@sveltejs/kit": "^2.57.0",
"@sveltejs/vite-plugin-svelte": "^7.0.0",
"@types/node": "^24",
"@types/plotly.js": "^3.0.10",
"@vitest/coverage-v8": "^4.1.8",
"eslint": "^10.2.0",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-svelte": "^3.17.0",
"globals": "^17.4.0",
"npm-run-all2": "^8.0.4",
"postcss-html": "^1.8.1",
"prettier": "^3.8.1",
"prettier-plugin-svelte": "^3.5.1",
"stylelint": "^17.12.0",
"stylelint-config-html": "^1.1.0",
"stylelint-config-standard": "^40.0.0",
"stylelint-plugin-use-baseline": "^1.4.2",
"svelte": "^5.55.2",
"svelte-check": "^4.4.6",
"tsx": "^4.22.4",
"typescript": "^6.0.2",
"typescript-eslint": "^8.58.1",
"vite": "^8.0.7",
"vitest": "^4.1.8",
"wait-on": "^9.0.10"
},
"dependencies": {
"lucide-svelte": "^1.0.1",
"plotly.js": "^3.6.0"
},
"engines": {
"node": ">=24"
},
"browserslist": [
"baseline widely available, safari 15"
]
}