-
Notifications
You must be signed in to change notification settings - Fork 19
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (54 loc) · 1.67 KB
/
Copy pathpackage.json
File metadata and controls
54 lines (54 loc) · 1.67 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
{
"name": "kun-galgame-sticker-sveltekit",
"version": "1.0.0",
"type": "module",
"scripts": {
"dev": "vite dev",
"build": "vite build",
"preview": "vite preview",
"check": "svelte-kit sync && svelte-check --tsconfig ./tsconfig.json",
"check:watch": "svelte-kit sync && svelte-check --tsconfig ./tsconfig.json --watch",
"test": "vitest",
"lint": "prettier --check . && eslint .",
"format": "prettier --write .",
"prisma:push": "pnpm prisma db push",
"prisma:generate": "pnpm prisma generate",
"start": "cross-env HOST=127.0.0.1 PORT=9420 pm2 start ecosystem.config.cjs",
"stop": "pm2 delete kun-visual-novel-sticker",
"deploy": "tsx scripts/deployBuild.ts"
},
"dependencies": {
"@prisma/adapter-pg": "^7.8.0",
"@prisma/client": "^7.8.0",
"@sveltejs/adapter-node": "^5.5.4",
"pg": "^8.13.1"
},
"devDependencies": {
"@eslint/js": "^9.18.0",
"@iconify/svelte": "^5.2.1",
"@sveltejs/enhanced-img": "^0.10.4",
"@sveltejs/kit": "^2.60.1",
"@sveltejs/vite-plugin-svelte": "^7.1.2",
"@tailwindcss/vite": "^4.0.0",
"@types/node": "^25.9.1",
"@types/pg": "^8.11.10",
"cross-env": "^10.1.0",
"dotenv": "^17.4.2",
"eslint": "^9.18.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-svelte": "^2.46.1",
"globals": "^15.14.0",
"prettier": "^3.8.3",
"prettier-plugin-svelte": "^4.0.0",
"prettier-plugin-tailwindcss": "^0.6.9",
"svelte": "^5.55.9",
"svelte-check": "^4.4.8",
"tailwindcss": "^4.0.0",
"tslib": "^2.8.1",
"tsx": "^4.19.2",
"typescript": "^6.0.3",
"typescript-eslint": "^8.20.0",
"vite": "^8.0.14",
"vitest": "^4.1.7"
}
}