forked from helius-labs/xray
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
106 lines (106 loc) · 4.12 KB
/
package.json
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
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
{
"name": "xray",
"version": "1.0.0",
"type": "module",
"platform": "node",
"scripts": {
"// Dev/Build": "-------------------------------------------------------------",
"dev": "dotenv -- vite dev",
"build": "vite build",
"preview": "vite preview",
"// Typescript": "-------------------------------------------------------------",
"check": "svelte-kit sync && svelte-check --tsconfig ./tsconfig.json",
"// Lint": "-------------------------------------------------------------",
"test": "npm run lint",
"lint": "eslint .",
"format": "prettier --write '{public,src}/**/*.{css,html,js,svelte}'",
"prepare": "husky install"
},
"lint-staged": {
"*.{js,jsx,ts,tsx}": [
"npm run lint",
"npm run format",
"git add"
]
},
"devDependencies": {
"@esbuild-plugins/node-globals-polyfill": "^0.2.3",
"@esbuild-plugins/node-modules-polyfill": "^0.2.2",
"@playwright/test": "^1.32.1",
"@rollup/plugin-inject": "^5.0.3",
"@sveltejs/adapter-auto": "^2.0.0",
"@sveltejs/adapter-vercel": "^2.0.2",
"@tailwindcss/typography": "^0.5.8",
"@types/js-cookie": "^3.0.3",
"@typescript-eslint/eslint-plugin": "^5.59.11",
"@typescript-eslint/parser": "^5.59.11",
"autoprefixer": "^10.4.7",
"daisyui": "^2.46.1",
"dotenv-cli": "^7.2.1",
"esbuild": "^0.18.4",
"eslint": "^8.43.0",
"eslint-config-prettier": "^8.8.0",
"eslint-import-resolver-typescript": "^3.5.5",
"eslint-plugin-filenames": "^1.3.2",
"eslint-plugin-html": "^7.1.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-import-newlines": "^1.3.1",
"eslint-plugin-jsonc": "^2.9.0",
"eslint-plugin-no-inferred-method-name": "^2.0.0",
"eslint-plugin-no-secrets": "^0.8.9",
"eslint-plugin-no-unsanitized": "^4.0.2",
"eslint-plugin-padding": "^0.0.4",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-promise": "^6.1.1",
"eslint-plugin-simple-import-sort": "^10.0.0",
"eslint-plugin-sort-imports-es6-autofix": "^0.6.0",
"eslint-plugin-sort-keys-fix": "^1.1.2",
"eslint-plugin-svelte": "^2.30.0",
"eslint-plugin-svelte3": "^4.0.0",
"eslint-plugin-this": "^0.2.3",
"eslint-plugin-write-good-comments": "^0.2.0",
"husky": "^8.0.3",
"lint-staged": "^13.2.2",
"postcss": "^8.4.14",
"postcss-load-config": "^4.0.1",
"prettier": "^2.8.8",
"prettier-plugin-import-sort": "^0.0.7",
"prettier-plugin-jsdoc": "^0.4.2",
"prettier-plugin-organize-attributes": "^0.0.5",
"prettier-plugin-organize-imports": "^3.2.2",
"prettier-plugin-sort-json": "^1.0.0",
"prettier-plugin-svelte": "^2.10.1",
"prettier-plugin-tailwindcss": "^0.3.0",
"svelte": "^3.54.0",
"svelte-check": "^3.0.1",
"svelte-preprocess": "^4.10.7",
"tailwindcss": "^3.1.5",
"vite": "^4.3.9"
},
"dependencies": {
"@coral-xyz/anchor": "^0.29.0",
"@lottiefiles/svelte-lottie-player": "^0.3.0",
"@onsol/tldparser": "^0.5.3",
"@solana/spl-account-compression": "^0.1.8",
"@solana/spl-token-registry": "^0.2.4574",
"@solana/wallet-adapter-wallets": "^0.19.11",
"@svelte-on-solana/wallet-adapter-core": "^1.0.11-alpha.0",
"@svelte-on-solana/wallet-adapter-ui": "^1.0.21-alpha.0",
"@sveltejs/kit": "^1.6.0",
"@tanstack/svelte-query": "^4.24.9",
"@trpc/client": "^10.12.0",
"@trpc/server": "^10.12.0",
"events": "^3.3.0",
"helius-sdk": "^1.0.7",
"highlight.js": "^11.7.0",
"install": "^0.13.0",
"json-format-highlight": "^1.0.4",
"json-viewer-js": "^1.0.8",
"svelte-highlight": "^7.1.2",
"svelte-intersection-observer": "^0.10.0",
"svelte-loading-spinners": "^0.3.4",
"trpc-svelte-query-adapter": "^2.0.0",
"trpc-sveltekit": "^3.3.1",
"zod": "^3.22.3"
}
}