-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 2.11 KB
/
package.json
File metadata and controls
52 lines (52 loc) · 2.11 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
{
"name": "dev.arctic.pkvault",
"description": "Immutable Pokémon storage for Gens I to IX",
"version": "1.0.0",
"license": "OQL-1.2",
"private": true,
"scripts": {
"dev": "next dev --turbopack",
"build": "next build",
"start": "next start",
"lint": "next lint",
"prepare": "next-ws patch; prisma generate; prisma migrate deploy; prisma db push; bun pm trust --all",
"update": "git pull origin master; git submodule update --init --recursive; git submodule foreach git submodule update --init --recursive; bun x next-ws patch; bun x prisma generate; bun x prisma migrate deploy; bun x prisma db push; bun upgrade; bun install; bun pm trust --all",
"dev:reimage": "echo \"You must type exactly 'I agree.' to continue.\" && echo \"This will delete your database containing ALL of your PKVault index data (not Pokémon save data) and remake it - if you have made any edits, they will be deleted irreversably.\" && read -p \"Confirmation: \" confirm && if [ \"$confirm\" = \"I agree.\" ]; then rm ./data/data.* || true && bun x prisma generate && bun x prisma db push --force-reset && bun run ./util/util-reindex.ts ; else echo \"Aborted: User didn't agree.\"; fi",
"dev:serenity": "cd serenity && dotnet clean && dotnet watch run ./serenity.csproj"
},
"dependencies": {
"@tailwindcss/postcss": "^4.1.11",
"bun": "^1.2.18",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"framer-motion": "^12.23.3",
"ldrs": "^1.1.7",
"lucide-react": "^0.525.0",
"next": "^15.3.5",
"next-ws": "^2.0.10",
"prisma": "^6.11.1",
"react": "^19.1.0",
"react-dom": "^19.1.0",
"tailwind-merge": "^3.3.1",
"ws": "^8.18.3"
},
"devDependencies": {
"@types/node": "^24.0.13",
"@types/react": "^19.1.8",
"@types/react-dom": "^19.1.6",
"eslint": "^9.31.0",
"eslint-config-next": "^15.3.5",
"postcss": "^8.5.6",
"tailwindcss": "^4.1.11",
"tw-animate-css": "^1.3.5",
"typescript": "^5.8.3"
},
"packageManager": "bun@1.2.20",
"trustedDependencies": [
"@prisma/engines",
"@tailwindcss/oxide",
"bun",
"prisma",
"sharp"
]
}