forked from spacesprotocol/explorer
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
63 lines (63 loc) · 1.67 KB
/
Copy pathpackage.json
File metadata and controls
63 lines (63 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
55
56
57
58
59
60
61
62
63
{
"name": "spacesprotocol-explorer",
"version": "0.1.3",
"private": true,
"scripts": {
"dev": "vite dev",
"build": "vite build --mode production && shx cp server.js build/ ",
"preview": "vite preview",
"push": "drizzle-kit push",
"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": {
"@sveltejs/adapter-auto": "^7.0.0",
"@sveltejs/kit": "^2.49.0",
"@sveltejs/vite-plugin-svelte": "^6.2.1",
"@tailwindcss/typography": "^0.5.13",
"@types/eslint": "^8.56.7",
"@types/pg": "^8.11.6",
"autoprefixer": "^10.4.19",
"daisyui": "^4.12.10",
"drizzle-kit": "^0.31.7",
"eslint": "^9.0.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-svelte": "^2.36.0",
"globals": "^15.0.0",
"postcss": "^8.4.38",
"prettier": "^3.1.1",
"prettier-plugin-svelte": "^3.1.2",
"svelte": "^5.43.14",
"svelte-check": "^4.3.4",
"tailwindcss": "^3.4.4",
"tailwindcss-theme-variants": "^2.0.0-beta.0",
"tslib": "^2.4.1",
"typescript": "^5.0.0",
"typescript-eslint": "^8.0.0-alpha.20",
"vite": "^7.2.4"
},
"type": "module",
"overrides": {
"cookie": "^0.7.1",
"esbuild": "^0.27.0"
},
"dependencies": {
"@noble/hashes": "^1.5.0",
"@sveltejs/adapter-node": "^5.4.0",
"bech32": "^2.0.0",
"bs58": "^6.0.0",
"buffer": "^6.0.3",
"dayjs": "^1.11.11",
"dotenv": "^16.4.5",
"drizzle-orm": "^0.31.2",
"express": "^4.19.2",
"ioredis": "^5.10.0",
"pg": "^8.12.0",
"postgres": "^3.4.4",
"punycode": "^2.3.1",
"shx": "^0.3.4",
"zod": "^3.23.8"
}
}