-
Notifications
You must be signed in to change notification settings - Fork 70
/
package.json
102 lines (102 loc) · 3.67 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
{
"name": "coracle",
"private": true,
"version": "0.4.15",
"type": "module",
"scripts": {
"dev": "vite --host",
"test": "npm run test:unit && npm run test:e2e",
"test:unit": "vitest --dir=tests/unit --watch=false",
"test:e2e": "cypress run",
"build": "rm -rf dist && pwa-assets-generator && vite build",
"sourcemaps": "sentry-cli --url https://glitchtip.coracle.social --auth-token $GLITCHTIP_AUTH_TOKEN --api-key $VITE_GLITCHTIP_API_KEY sourcemaps --org coracle --project coracle --release $(cat package.json|jq -r '.version') upload --url-prefix /assets/ dist/assets",
"release:android": "cap sync && cap build android --androidreleasetype APK --signing-type apksigner",
"check:es": "eslint 'src/**/*.{js,ts,svelte}' --quiet",
"check:ts": "svelte-check --tsconfig ./tsconfig.json --threshold error",
"check:fmt": "prettier --check $(git diff head --name-only --diff-filter d | grep -E '(js|ts|svelte)$' | xargs)",
"check:errors": "run-s check:ts check:es",
"check": "run-p check:errors check:fmt",
"format": "prettier --write $(git diff head --name-only --diff-filter d | grep -E '(js|ts|svelte)$' | xargs)",
"watch": "find src -type f | entr -r"
},
"dependencies": {
"@capacitor/android": "^6.1.2",
"@capacitor/app": "^6.0.1",
"@capacitor/assets": "^3.0.5",
"@capacitor/cli": "^6.1.2",
"@capacitor/core": "^6.1.2",
"@capacitor/ios": "^6.1.2",
"@event-calendar/core": "^3.6.2",
"@event-calendar/day-grid": "^3.6.2",
"@event-calendar/interaction": "^3.6.2",
"@fortawesome/fontawesome-free": "^6.6.0",
"@getalby/bitcoin-connect": "^3.6.2",
"@scure/base": "^1.1.9",
"@sentry/browser": "^8.35.0",
"@sentry/cli": "^2.38.1",
"@sveltejs/vite-plugin-svelte": "^3.1.2",
"@tsconfig/svelte": "^5.0.4",
"@types/ramda": "^0.30.2",
"@types/throttle-debounce": "^5.0.2",
"@vite-pwa/assets-generator": "^0.2.6",
"@welshman/app": "~0.0.19",
"@welshman/content": "~0.0.12",
"@welshman/dvm": "~0.0.10",
"@welshman/feeds": "~0.0.21",
"@welshman/lib": "~0.0.23",
"@welshman/net": "~0.0.29",
"@welshman/signer": "~0.0.9",
"@welshman/store": "~0.0.12",
"@welshman/util": "~0.0.42",
"autoprefixer": "^10.4.20",
"bowser": "^2.11.0",
"classnames": "^2.5.1",
"compressorjs": "^1.2.1",
"cypress": "^13.15.0",
"date-picker-svelte": "^2.13.0",
"dotenv": "^16.4.5",
"esbuild": "^0.24.0",
"eslint": "^9.12.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-svelte": "^2.45.1",
"favicons": "^7.2.0",
"fuse.js": "^7.0.0",
"hls.js": "^1.5.17",
"hurdak": "^0.2.10",
"husky": "^9.1.6",
"idb": "^8.0.0",
"insane": "^2.6.2",
"marked": "^14.1.3",
"normalize-url": "^8.0.1",
"nostr-signer-capacitor-plugin": "^0.0.3",
"nostr-tools": "^2.8.1",
"npm-run-all": "^4.1.5",
"postcss": "^8.4.47",
"prettier": "^3.3.3",
"prettier-plugin-svelte": "^3.2.7",
"prettier-plugin-tailwindcss": "^0.6.8",
"qr-scanner": "^1.4.2",
"qrcode": "^1.5.4",
"ramda": "^0.30.1",
"rollup": "^4.24.0",
"sharp": "^0.33.5",
"svelte": "^4.2.19",
"svelte-check": "^4.0.5",
"svelte-link-preview": "^0.3.3",
"svelte-loading-spinners": "^0.3.6",
"svelte-preprocess": "^6.0.3",
"svelte-range-slider-pips": "^3.1.1",
"svelte-switch": "^0.0.5",
"tailwindcss": "^3.4.14",
"throttle-debounce": "^5.0.2",
"tippy.js": "^6.3.7",
"typescript": "~5.5.4",
"typescript-eslint": "^8.10.0",
"uuid": "^10.0.0",
"vite": "^5.4.9",
"vite-plugin-html-config": "^2.0.2",
"vite-plugin-node-polyfills": "^0.22.0",
"vite-plugin-pwa": "^0.20.5",
"vitest": "^2.1.3"
}
}