-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
100 lines (100 loc) · 3.59 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": "rc-datteln",
"version": "0.0.2",
"private": true,
"scripts": {
"dev": "vite dev --host",
"iphone": "playwright wk --device 'iPhone 12' --ignore-https-errors https://localhost:5173/",
"tablet": "playwright cr --color-scheme dark --device 'Galaxy Tab S4 landscape' --ignore-https-errors https://localhost:5173/",
"desktop": "playwright ff --device 'Desktop Firefox' --ignore-https-errors https://localhost:5173/",
"test": "vitest",
"test:codegen": "playwright codegen -b wk --device 'iPhone 8' --ignore-https-errors https://localhost:5173/",
"build": "vite build",
"optimize": "rm -r ./build-optimized; cp -r ./build ./build-optimized && purgecss --css ./build/_app/immutable/assets/*.css --content ./build/*.html ./build/**/*.js ./build/**/*.html -s :checked :disabled -font --output ./build-optimized/_app/immutable/assets && html-minifier --config-file html-minifier.json --input-dir ./build --output-dir ./build-optimized --file-ext html",
"preview": "http-server ./build-optimized -p 4173 -c-1",
"test:e2e": "playwright test --headed",
"test:e2e-basic": "playwright test --headed basic",
"check": "svelte-kit sync && svelte-check --tsconfig ./tsconfig.json",
"check:watch": "svelte-kit sync && svelte-check --tsconfig ./tsconfig.json --watch",
"lint": "prettier --write . && eslint --fix .",
"format": "prettier --plugin-search-dir . --write .",
"sugar.css": "curl https://cdn.jsdelivr.net/gh/Rezi/sugar-css@main/dist/sugar.min.css | sed 's/body>/.body>/g' > src/sugar.mod.min.css",
"preinstall": "npx only-allow pnpm"
},
"devDependencies": {
"@playwright/test": "^1.49.1",
"@sveltejs/adapter-static": "^3.0.8",
"@sveltejs/enhanced-img": "^0.4.4",
"@sveltejs/kit": "^2.15.0",
"@sveltejs/vite-plugin-svelte": "^4.0.4",
"@testing-library/svelte": "^5.2.6",
"@testing-library/user-event": "^14.5.2",
"@types/eslint": "^9.6.1",
"eslint": "^9.17.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-svelte": "^2.46.1",
"globals": "^15.14.0",
"html-minifier": "^4.0.0",
"jsdom": "^25.0.1",
"marked": "^15.0.4",
"mdast-util-directive": "^3.0.0",
"mdsvex-enhanced-images": "^0.2.3",
"pdfmake": "^0.2.17",
"prettier": "^3.4.2",
"prettier-plugin-svelte": "^3.3.2",
"purgecss": "^7.0.2",
"rehype-autolink-headings": "^7.1.0",
"rehype-slug": "^6.0.0",
"remark-directive": "2.0.1",
"remark-directive-rehype": "0.4.2",
"remark-frontmatter": "^5.0.0",
"remark-gfm": "^4.0.0",
"remark-parse": "10.0.2",
"schema-dts": "^1.1.2",
"svelte": "^5.16.0",
"svelte-check": "^4.1.1",
"tslib": "^2.8.1",
"typescript": "^5.7.2",
"typescript-eslint": "8.12.2",
"unified": "^11.0.5",
"unist-util-visit": "^5.0.0",
"vite": "^5.4.11",
"vitest": "^2.1.8"
},
"type": "module",
"browserslist": [
"defaults"
],
"dependencies": {
"@types/mdast": "^4.0.4",
"@types/node": "^22.10.2",
"@types/pdfmake": "^0.2.10",
"at-rule-packer": "^0.4.2",
"autoprefixer": "^10.4.20",
"http-server": "^14.1.1",
"mdpdfmake": "^1.0.8",
"mdsvex": "^0.12.3",
"postcss-calc": "^10.0.2",
"postcss-combine-duplicated-selectors": "^10.0.3",
"svelte-preprocess": "^6.0.3",
"svelte-sequential-preprocessor": "^2.0.2",
"vite-plugin-mkcert": "^1.17.6"
},
"@dependencies removed": {
"postcss-at-rules-variables": "^0.3.0",
"postcss-conditionals": "^2.1.0",
"postcss-css-variables": "^0.19.0",
"postcss-each": "^1.1.0",
"postcss-for": "^2.1.1",
"postcss-import": "^16.1.0",
"postcss-load-config": "^6.0.1",
"postcss-nested": "^7.0.2",
"postcss-var-optimize": "^8.1.0"
},
"pnpm": {
"overrides": {
"https": "npm:dry-uninstall",
"nwsapi": "2.2.13"
}
}
}