-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
57 lines (57 loc) · 1.72 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
{
"name": "gubasso.xyz",
"version": "0.1.0",
"private": true,
"repository": "gubasso/gubasso.xyz",
"scripts": {
"dev": "vite dev",
"watch:pdf": "watchexec -w src -f '*' -w . -f 'generatePdf*' -- node generatePdf.js",
"build": "vite build",
"preview": "vite preview",
"test": "npm run test:integration && npm run test:unit",
"lint": "prettier --plugin-search-dir . --check . && eslint .",
"format": "prettier --plugin-search-dir . --list-different --ignore-unknown --write .",
"test:integration": "playwright test",
"test:unit": "vitest"
},
"devDependencies": {
"@eslint/eslintrc": "^3.1.0",
"@eslint/js": "^9.7.0",
"@playwright/test": "^1.45.2",
"@sveltejs/adapter-auto": "^3.2.2",
"@sveltejs/adapter-static": "^3.0.2",
"@sveltejs/kit": "^2.5.18",
"ajv": "^8.17.1",
"ajv-formats": "^3.0.1",
"autoprefixer": "^10.4.19",
"eslint": "^9.7.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-svelte": "^2.43.0",
"fast-glob": "^3.3.2",
"globals": "^15.8.0",
"mdsvex": "^0.11.2",
"prettier": "^3.3.3",
"prettier-plugin-svelte": "^3.2.6",
"svelte": "^4.2.18",
"vite": "^5.3.4",
"vitest": "^2.0.3"
},
"type": "module",
"dependencies": {
"@sveltejs/vite-plugin-svelte": "^3.1.1",
"cal-heatmap": "^4.2.4",
"caniuse-lite": "^1.0.30001642",
"iconify-icon": "^2.1.0",
"js-yaml": "^4.1.0",
"path-parse": "^1.0.7",
"puppeteer": "^22.13.1",
"rehype-autolink-headings": "^7.1.0",
"rehype-slug": "^6.0.0",
"remark-footnotes": "4.0",
"remark-github": "^12.0.0",
"remark-mermaidjs": "^6.0.0",
"remark-toc": "^9.0.0",
"remark-unwrap-images": "^4.0.0",
"svelte-preprocess": "^6.0.2"
}
}