-
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
54 lines (54 loc) · 1.79 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
{
"name": "cipherchat",
"description": "Encrypted messaging over the bitcoin lightning network.",
"repository": "https://github.com/secondl1ght/cipherchat",
"author": "secondl1ght <[email protected]>",
"license": "AGPL-3.0",
"version": "1.0.3",
"private": true,
"scripts": {
"dev": "PUBLIC_COMMIT=`git log -n 1 --format=%h` vite dev",
"build": "PUBLIC_COMMIT=`git log -n 1 --format=%h` 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",
"lint": "prettier --plugin=prettier-plugin-svelte --plugin=prettier-plugin-tailwindcss --check . && eslint .",
"format": "prettier --plugin=prettier-plugin-svelte --plugin=prettier-plugin-tailwindcss --write ."
},
"devDependencies": {
"@sveltejs/adapter-auto": "^3.2.0",
"@sveltejs/kit": "^2.5.5",
"@sveltejs/vite-plugin-svelte": "^3.1.0",
"@typescript-eslint/eslint-plugin": "^7.6.0",
"@typescript-eslint/parser": "^7.6.0",
"@zerodevx/svelte-toast": "^0.9.5",
"autoprefixer": "^10.4.19",
"eslint": "8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-svelte": "^2.37.0",
"postcss": "^8.4.38",
"prettier": "^3.2.5",
"prettier-plugin-svelte": "^3.2.3",
"prettier-plugin-tailwindcss": "^0.5.13",
"svelte": "^4.2.14",
"svelte-check": "^3.6.9",
"tailwindcss": "^3.4.3",
"tslib": "^2.6.2",
"typescript": "^5.4.5",
"vite": "^5.2.8"
},
"type": "module",
"dependencies": {
"@emoji-mart/data": "^1.1.2",
"@lightninglabs/lnc-web": "^0.3.1-alpha",
"buffer": "^6.0.3",
"date-fns": "^3.6.0",
"dexie": "^4.0.4",
"emoji-mart": "^5.5.2",
"linkify-string": "^4.1.3",
"linkifyjs": "^4.1.3",
"numbro": "^2.5.0",
"qr-scanner": "^1.4.2",
"tippy.js": "^6.3.7"
}
}