-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
35 lines (35 loc) · 1018 Bytes
/
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
{
"name": "deluge-companion",
"private": true,
"version": "0.0.0",
"type": "module",
"scripts": {
"dev": "vite",
"build": "vite build",
"deploy": "gh-pages -d dist",
"format": "prettier --write src/**/*.{svelte,ts,css}",
"preview": "vite preview",
"check": "svelte-check --tsconfig ./tsconfig.json",
"converter:build": "npx tsc --project tsconfig.node.json",
"converter:run": "node build/src/utils/convert-md-to-json.js"
},
"devDependencies": {
"@sveltejs/vite-plugin-svelte": "^3.1.2",
"@tsconfig/svelte": "^5.0.4",
"autoprefixer": "^10.4.20",
"fuzzysort": "^3.0.2",
"gh-pages": "^6.1.1",
"marked": "^14.1.2",
"postcss": "^8.4.47",
"postcss-load-config": "^6.0.1",
"prettier": "^3.3.3",
"prettier-plugin-svelte": "^3.2.7",
"prettier-plugin-tailwindcss": "^0.6.8",
"svelte": "^4.2.19",
"svelte-check": "^4.0.4",
"tailwindcss": "^3.4.13",
"tslib": "^2.7.0",
"typescript": "^5.6.2",
"vite": "^5.4.8"
}
}