-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
68 lines (68 loc) · 2 KB
/
package.json
File metadata and controls
68 lines (68 loc) · 2 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
{
"name": "blockrok",
"version": "0.0.1",
"type": "module",
"scripts": {
"dev": "vite dev",
"build": "prisma generate && 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",
"format": "prettier --write .",
"lint": "prettier --check .",
"db:start": "docker compose up -d",
"db:stop": "docker compose down",
"db:reset": "docker compose down -v && docker compose up -d",
"populate-coins": "tsx src/lib/server/scripts/populate-coins.ts",
"update-metadata": "tsx src/lib/server/scripts/update-metadata.ts"
},
"devDependencies": {
"@iconify/svelte": "^4.0.2",
"@sveltejs/adapter-auto": "^3.0.0",
"@sveltejs/kit": "^2.0.0",
"@sveltejs/vite-plugin-svelte": "^4.0.0",
"autoprefixer": "^10.4.20",
"prettier": "^3.3.2",
"prettier-plugin-svelte": "^3.2.6",
"prettier-plugin-tailwindcss": "^0.6.5",
"svelte": "^5.0.0",
"svelte-check": "^4.0.0",
"tailwindcss": "^3.4.9",
"tsx": "^4.19.2",
"typescript": "^5.0.0",
"vite": "^5.0.3",
"vite-plugin-node-polyfills": "^0.22.0"
},
"dependencies": {
"@clerk/backend": "^1.18.0",
"@clerk/express": "^1.3.18",
"@fontsource/press-start-2p": "^5.1.0",
"@fontsource/vt323": "^5.1.0",
"@jup-ag/api": "^6.0.30",
"@prisma/client": "^6.0.0",
"@project-serum/anchor": "^0.26.0",
"@solana/spl-token": "^0.4.9",
"@solana/web3.js": "^1.95.5",
"@stripe/stripe-js": "^5.2.0",
"@tailwindcss/container-queries": "^0.1.1",
"@tailwindcss/forms": "^0.5.9",
"@tailwindcss/typography": "^0.5.15",
"assert": "^2.1.0",
"bs58": "^6.0.0",
"chart.js": "^4.4.6",
"cross-fetch": "^4.0.0",
"dotenv": "^16.4.5",
"html2canvas": "^1.4.1",
"crypto-browserify": "^3.12.1",
"https-browserify": "^1.0.0",
"os-browserify": "^0.3.0",
"prisma": "^6.0.0",
"stream-browserify": "^3.0.0",
"stream-http": "^3.2.0",
"stripe": "^17.4.0",
"svelte-clerk": "^0.4.9"
},
"engines": {
"node": "^20.0.0"
}
}