forked from walletbeat/walletbeat
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
90 lines (90 loc) · 3.41 KB
/
package.json
File metadata and controls
90 lines (90 loc) · 3.41 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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
{
"name": "walletbeat",
"type": "module",
"version": "0.0.1",
"packageManager": "pnpm@10.4.0+sha512.6b849d0787d97f8f4e1f03a9b8ff8f038e79e153d6f11ae539ae7c435ff9e796df6a862c991502695c7f9e8fac8aeafc1ac5a8dab47e36148d183832d886dd52",
"scripts": {
"astro": "ASTRO_TELEMETRY_DISABLED=1 astro",
"build": "deploy/build.sh",
"check:all": "pnpm run check:astro && pnpm run check:vitest --run && pnpm run check:lint && pnpm run check:syntax && pnpm run check:spelling:quiet && pnpm run check:misc && pnpm run check:build:post:quiet",
"check:quick": "pnpm run check:lint:quick && pnpm run check:syntax && pnpm run check:spelling:quiet && pnpm run check:misc",
"check:astro": "pnpm run astro check --minimumSeverity=hint --minimumFailingSeverity=hint",
"check:lint": "eslint --cache src data",
"check:lint:quick": "WALLETBEAT_PRECOMMIT_FAST=true pnpm run check:lint --report-unused-disable-directives-severity=off",
"check:spelling": "cspell lint .",
"check:spelling:reorder": "tests/cspell/reorder-cspell.sh",
"check:spelling:quiet": "cspell lint --quiet --no-progress .",
"check:syntax": "prettier --check .",
"check:misc": "for script in deploy/misc-tests/*.sh; do echo \"> Running check: $(basename \"${script}\" | cut -d. -f1)...\" >&2; bash \"$script\" || exit \"$?\"; done; echo \"> All checks passed!\" >&2",
"check:vitest": "vitest --typecheck --cache",
"check:build:post": "tests/postbuild.sh",
"check:build:post:quiet": "QUIET=true pnpm run check:build:post",
"dev": "pnpm run astro dev",
"lint": "pnpm run check:syntax --write && pnpm run check:lint --fix && pnpm run check:spelling:reorder && cspell lint .",
"preview": "pnpm run astro preview",
"fix": "pnpm run lint",
"ipfs": "deploy/ipfs/ipfs.sh",
"helios": "deploy/helios/helios.sh",
"helios:wrap": "deploy/helios/helios-wrap.sh"
},
"dependencies": {
"@astrojs/sitemap": "^3.6.0",
"@astrojs/svelte": "^7.2.1",
"@eslint/js": "^9.38.0",
"@floating-ui/dom": "^1.7.4",
"@fontsource/montserrat": "^5.2.8",
"@material-icons/svg": "^1.0.33",
"@tanstack/match-sorter-utils": "^8.19.4",
"astro": "^5.15.2",
"autoprefixer": "^10.4.21",
"eslint-plugin-import": "^2.32.0",
"eslint-plugin-prettier": "^5.5.4",
"eslint-plugin-unused-imports": "^4.3.0",
"lucide-static": "^0.487.0",
"micromark": "^4.0.2",
"postcss": "^8.5.6",
"svelte": "^5.43.0",
"typescript-eslint": "^8.46.2"
},
"devDependencies": {
"@astrojs/check": "^0.9.5",
"@eslint-community/eslint-plugin-eslint-comments": "^4.5.0",
"@fleek-platform/cli": "^3.9.4",
"@kindspells/astro-shield": "^1.7.1",
"blumen": "^0.16.5",
"cspell": "^8.19.4",
"eslint": "^9.38.0",
"eslint-config-love": "^118.0.0",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-simple-import-sort": "^12.1.1",
"eslint-plugin-sort-keys-custom-order": "^2.2.1",
"eslint-plugin-svelte": "^3.13.0",
"globals": "^15.15.0",
"harper.js": "^0.56.0",
"orbiter-cli": "^0.8.2",
"p-limit": "^6.2.0",
"pnpm": "10.13.1",
"prettier": "^3.6.2",
"prettier-plugin-astro": "^0.14.1",
"prettier-plugin-curly": "^0.3.2",
"tsx": "^4.20.6",
"typescript": "^5.9.3",
"vitest": "^3.2.4"
},
"prettier": {
"singleQuote": true,
"trailingComma": "all",
"printWidth": 100,
"tabWidth": 2,
"semi": false,
"jsxSingleQuote": true,
"bracketSameLine": false,
"arrowParens": "avoid",
"endOfLine": "lf",
"useTabs": true,
"plugins": [
"prettier-plugin-astro",
"prettier-plugin-curly"
]
}
}