-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
45 lines (45 loc) · 1.18 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
{
"name": "url-shortener",
"version": "0.0.1",
"private": true,
"scripts": {
"dev": "vite dev",
"build": "vite build",
"preview": "vite preview",
"lint": "prettier --plugin-search-dir . --check .",
"format": "prettier --plugin-search-dir . --write .",
"check": "svelte-kit sync && svelte-check --tsconfig ./tsconfig.json",
"check:watch": "svelte-kit sync && svelte-check --tsconfig ./tsconfig.json --watch"
},
"devDependencies": {
"@iconify/svelte": "^3.1.4",
"@sveltejs/adapter-auto": "^2.0.0",
"@sveltejs/kit": "^1.20.4",
"@types/qrcode": "^1.5.1",
"@types/slug": "^5.0.4",
"autoprefixer": "^10.4.14",
"daisyui": "^3.1.7",
"postcss": "^8.4.24",
"postcss-load-config": "^4.0.1",
"prettier": "^2.8.8",
"prettier-plugin-svelte": "^2.10.1",
"sass": "^1.63.6",
"svelte": "^4.0.0",
"tailwindcss": "^3.3.2",
"vite": "^4.3.6"
},
"type": "module",
"dependencies": {
"@fontsource-variable/anuphan": "^5.0.3",
"firebase": "^9.23.0",
"firebase-admin": "^11.10.1",
"qrcode": "^1.5.3",
"slug": "^8.2.3",
"svelte-check": "^3.5.0",
"sveltefire": "^0.4.2",
"tailwind-merge": "^1.14.0",
"tslib": "^2.6.2",
"typescript": "^5.2.2",
"zod": "^3.22.2"
}
}