This repository was archived by the owner on Jul 16, 2025. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
71 lines (71 loc) · 2.03 KB
/
package.json
File metadata and controls
71 lines (71 loc) · 2.03 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
{
"name": "bpy-web",
"version": "0.0.1",
"private": true,
"scripts": {
"dev": "bunx --bun vite",
"compile": "bun run build && bun start",
"start": "bun -r dotenv/config ./build/index.js",
"build": "bunx --bun vite build",
"preview": "bunx --bun vite preview",
"check": "svelte-kit sync && svelte-check --tsconfig ./tsconfig.json",
"check:watch": "svelte-kit sync && svelte-check --tsconfig ./tsconfig.json --watch",
"lint": "prettier --check . && eslint .",
"format": "prettier --write ."
},
"devDependencies": {
"@skeletonlabs/skeleton": "2.8.0",
"@skeletonlabs/tw-plugin": "0.3.1",
"@sveltejs/kit": "^2.7.3",
"@sveltejs/vite-plugin-svelte": "^3.1.2",
"@tailwindcss/forms": "0.5.7",
"@tailwindcss/typography": "0.5.10",
"@types/bcrypt": "^5.0.2",
"@types/cli-progress": "^3.11.5",
"@types/eslint": "8.56.0",
"@types/express": "^4.17.21",
"@types/node": "20.11.17",
"@types/progress": "^2.0.7",
"@typescript-eslint/eslint-plugin": "^6.0.0",
"@typescript-eslint/parser": "^6.0.0",
"autoprefixer": "10.4.17",
"chalk": "^5.3.0",
"cli-progress": "^3.12.0",
"dotenv": "^16.4.5",
"eslint": "^8.56.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-svelte": "^2.35.1",
"picocolors": "^1.0.0",
"postcss": "8.4.35",
"prettier": "^3.1.1",
"prettier-plugin-svelte": "^3.1.2",
"rd": "^2.0.1",
"sass": "^1.72.0",
"svelte": "^4.2.19",
"svelte-adapter-bun": "^0.5.2",
"svelte-check": "^3.6.0",
"svelte-feathers": "^1.0.1",
"svelte-loading-spinners": "^0.3.4",
"sveltekit-search-params": "^2.1.2",
"tailwindcss": "3.4.1",
"tslib": "^2.4.1",
"typescript": "^5.0.0",
"vite": "^5.4.10",
"vite-plugin-tailwind-purgecss": "0.2.0"
},
"type": "module",
"dependencies": {
"@floating-ui/dom": "1.6.1",
"bcrypt": "^5.1.1",
"caniuse-lite": "^1.0.30001673",
"dayjs": "^1.11.13",
"highlight.js": "11.9.0",
"knex": "^3.1.0",
"marked": "^12.0.1",
"mysql2": "^3.9.8",
"redis": "^4.6.13",
"svelte-time": "^0.9.0",
"svelte-turnstile": "^0.5.0",
"tailwind-merge": "^2.5.2"
}
}