-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
74 lines (74 loc) · 2.46 KB
/
package.json
File metadata and controls
74 lines (74 loc) · 2.46 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
70
71
72
73
74
{
"name": "greencode",
"version": "0.1.0",
"description": "The website for GreenCode Hackathon",
"type": "module",
"scripts": {
"start": "pocketbase serve --http=$POCKETBASE_HOST:$POCKETBASE_PORT & deno -A ./.deno-deploy/server.ts",
"db": "pocketbase serve --http=$POCKETBASE_HOST:$POCKETBASE_PORT",
"dev": "pocketbase serve --http=$POCKETBASE_HOST:$POCKETBASE_PORT & vite dev --host=0.0.0.0",
"build": "vite build",
"preview": "pocketbase serve --http=$POCKETBASE_HOST:$POCKETBASE_PORT & vite preview --host=0.0.0.0",
"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",
"format": "prettier --write .",
"lint": "prettier --check . && eslint ."
},
"dependencies": {
"@fontsource/maple-mono": "^5.2.5",
"@fontsource/merriweather": "^5.2.9",
"@fontsource/poppins": "^5.2.6",
"pino": "^9.9.0",
"pino-pretty": "^13.1.1",
"pocketbase": "^0.26.2",
"validator": "^13.15.15"
},
"devDependencies": {
"@deno/svelte-adapter": "^0.1.0",
"@eslint/compat": "^1.3.2",
"@eslint/js": "^9.34.0",
"@fontsource/pixelify-sans": "^5.2.6",
"@internationalized/date": "^3.8.2",
"@lucide/svelte": "^0.515.0",
"@sveltejs/kit": "^2.36.1",
"@sveltejs/vite-plugin-svelte": "^5.1.1",
"@tailwindcss/vite": "^4.1.12",
"@types/node": "^24.3.0",
"@types/validator": "^13.15.2",
"@zxcvbn-ts/core": "^3.0.4",
"@zxcvbn-ts/language-common": "^3.0.4",
"@zxcvbn-ts/language-en": "^3.0.2",
"bits-ui": "^2.9.4",
"clsx": "^2.1.1",
"eslint": "^9.34.0",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-svelte": "^3.11.0",
"globals": "^16.3.0",
"jiti": "^2.5.1",
"jsrepo": "^2.4.5",
"mode-watcher": "^1.1.0",
"prettier": "^3.6.2",
"prettier-plugin-sort-imports": "^1.8.8",
"prettier-plugin-svelte": "^3.4.0",
"prettier-plugin-tailwindcss": "^0.6.14",
"runed": "^0.29.2",
"svelte": "^5.38.2",
"svelte-check": "^4.3.1",
"svelte-toolbelt": "^0.9.3",
"tailwind-merge": "^3.3.1",
"tailwind-variants": "^1.0.0",
"tailwindcss": "^4.1.12",
"tw-animate-css": "^1.3.7",
"typescript": "^5.9.2",
"typescript-eslint": "^8.40.0",
"vite": "^6.3.5",
"vite-plugin-devtools-json": "^0.2.1"
},
"pnpm": {
"onlyBuiltDependencies": [
"@tailwindcss/oxide",
"esbuild"
]
}
}