-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
81 lines (81 loc) · 2.41 KB
/
package.json
File metadata and controls
81 lines (81 loc) · 2.41 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
75
76
77
78
79
80
81
{
"name": "web",
"private": true,
"version": "0.0.1",
"type": "module",
"scripts": {
"dev": "vite dev",
"build": "vite build",
"preview": "vite preview",
"prepare": "husky",
"check": "svelte-kit sync && svelte-check --tsconfig ./tsconfig.json",
"check:watch": "svelte-kit sync && svelte-check --tsconfig ./tsconfig.json --watch",
"format": "prettier --write src migrations",
"lint": "prettier --check src migrations && eslint src migrations",
"genDatabaseSchema": "kysely-codegen --config-file kysely.config.json",
"start": "node -r dotenv/config build",
"migration:create": "./script/createMigration.sh",
"migrate": "tsx ./script/runMigration.ts",
"migrate:up": "tsx ./script/runMigration.ts up",
"migrate:down": "tsx ./script/runMigration.ts down"
},
"devDependencies": {
"@eslint/compat": "^1.2.9",
"@eslint/js": "^9.26.0",
"@sveltejs/adapter-node": "^5.2.12",
"@sveltejs/kit": "^2.31.1",
"@sveltejs/vite-plugin-svelte": "^5.0.3",
"@tailwindcss/typography": "^0.5.16",
"@tailwindcss/vite": "^4.1.5",
"@types/bcrypt": "^5.0.2",
"@types/jsonwebtoken": "^9.0.9",
"@types/uuid": "^10.0.0",
"eslint": "^9.26.0",
"eslint-config-prettier": "^10.1.3",
"eslint-plugin-svelte": "^3.5.1",
"globals": "^16.3.0",
"husky": "^9.1.7",
"kysely-codegen": "^0.18.5",
"lint-staged": "^16.1.2",
"prettier": "^3.5.3",
"prettier-plugin-svelte": "^3.3.3",
"prettier-plugin-tailwindcss": "^0.6.11",
"svelte": "^5.38.1",
"svelte-check": "^4.1.7",
"tailwindcss": "^4.1.5",
"tsx": "^4.20.3",
"typescript": "^5.8.3",
"typescript-eslint": "^8.32.0",
"vite": "^6.3.5"
},
"dependencies": {
"@google/generative-ai": "^0.24.1",
"@patrick115/sveltekitapi": "^1.3.1",
"bcrypt": "^5.1.1",
"bootstrap-icons": "^1.12.1",
"chart.js": "^4.4.9",
"clsx": "^2.1.1",
"dotenv": "^16.5.0",
"jsonwebtoken": "^9.0.2",
"kysely": "^0.28.2",
"marked": "^15.0.12",
"mysql2": "^3.14.1",
"sharp": "^0.34.2",
"simple-json-db": "^2.0.0",
"starback": "github:patrick11514/starback.js",
"sweetalert2": "^11.21.0",
"tailwind-merge": "^3.2.0",
"uuid": "^11.1.0",
"zod": "^4.0.17"
},
"lint-staged": {
"src/**/*.{ts,svelte}": [
"prettier --write",
"eslint --fix"
],
"migrations/**/*.ts": [
"prettier --write",
"eslint --fix"
]
}
}