-
Notifications
You must be signed in to change notification settings - Fork 14
/
package.json
103 lines (103 loc) · 3.21 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
{
"name": "rabbit",
"version": "0.0.0",
"description": "",
"license": "AGPL-3.0-or-later",
"private": true,
"scripts": {
"start": "npm run generatePackageInfo && vite",
"dev": "npm run generatePackageInfo && vite",
"build": "npm run generatePackageInfo && vite build",
"serve": "npm run generatePackageInfo && vite preview",
"lint": "npm run prettier && npm run eslint",
"fix": "npm run prettier-fix && npm run eslint-fix",
"eslint": "eslint .",
"prettier": "prettier -c .",
"eslint-fix": "eslint --fix .",
"prettier-fix": "prettier --write .",
"tsc": "tsc --noEmit --skipLibCheck",
"test": "vitest run --no-watch",
"watch-test": "vitest --watch",
"cover": "vitest run --coverage",
"prepare": "husky install",
"generatePackageInfo": "node -e \"import('./scripts/generatePackageInfo.mjs').then((m) => m.default())\"",
"checkLicense": "node -e \"import('./scripts/checkLicense.mjs').then((m) => m.default())\"",
"checkSecrets": "node -e \"import('./scripts/checkSecrets.mjs').then((m) => m.default())\""
},
"devDependencies": {
"@types/jsdom": "^21.1.7",
"@types/qrcode": "^1.5.5",
"@typescript-eslint/eslint-plugin": "^7.11.0",
"@typescript-eslint/parser": "^7.11.0",
"autoprefixer": "^10.4.20",
"eslint": "^8.56.0",
"eslint-config-airbnb-typescript": "^18.0.0",
"eslint-config-prettier": "^9.1.0",
"eslint-import-resolver-typescript": "^3.6.1",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-jsx-a11y": "^6.8.0",
"eslint-plugin-no-relative-import-paths": "^1.5.4",
"eslint-plugin-solid": "^0.14.0",
"eslint-plugin-tailwindcss": "^3.17.0",
"husky": "^9.1.6",
"jsdom": "^25.0.1",
"license-checker": "^25.0.1",
"lint-staged": "^15.2.10",
"postcss": "^8.4.47",
"prettier": "^3.3.3",
"prettier-plugin-tailwindcss": "^0.6.8",
"typescript": "^5.6.3",
"vite": "^5.4.10",
"vite-plugin-node-polyfills": "^0.22.0",
"vite-plugin-solid": "^2.10.2",
"vite-plugin-solid-svg": "^0.8.1",
"vitest": "^2.1.4"
},
"dependencies": {
"@solidjs/meta": "^0.29.4",
"@solidjs/router": "^0.15.0",
"@tailwindcss/forms": "^0.5.9",
"@tanstack/query-async-storage-persister": "^5.59.17",
"@tanstack/query-persist-client-core": "^5.59.17",
"@tanstack/solid-query": "^5.59.17",
"@textcomplete/core": "^0.1.13",
"@textcomplete/textarea": "^0.1.13",
"@thisbeyond/solid-dnd": "^0.7.5",
"@types/lodash": "^4.17.13",
"@types/ua-parser-js": "^0.7.39",
"bech32": "^2.0.0",
"bolt11": "^1.4.1",
"emoji-mart": "^5.6.0",
"heroicons": "^2.1.5",
"i18next": "^23.16.4",
"i18next-browser-languagedetector": "^8.0.0",
"idb-keyval": "^6.2.1",
"lodash": "^4.17.21",
"nostr-tools": "^2.10.1",
"nostr-wasm": "^0.1.0",
"qrcode": "^1.5.4",
"solid-js": "^1.9.3",
"tailwindcss": "^3.4.14",
"ua-parser-js": "^1.0.39",
"webln": "^0.3.2",
"zod": "^3.23.8"
},
"lint-staged": {
"*.{js,jsx,ts,tsx}": "./scripts/fix.sh"
},
"nyc": {
"include": [
"src/**/*.ts"
],
"extension": [
".ts"
],
"reporter": [
"json",
"html",
"text"
],
"sourceMap": true,
"all": true
}
}