-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
68 lines (68 loc) · 2 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
{
"name": "nostatus",
"private": true,
"version": "0.0.0",
"type": "module",
"author": "jiftechnify",
"repository": {
"type": "git",
"url": "[email protected]:jiftechnify/nostatus.git"
},
"license": "MIT",
"scripts": {
"prepare": "panda codegen",
"type-check": "tsc",
"vite-dev": "vite dev",
"vite-build": "vite build",
"gen-build-id": "tsx scripts/genBuildId.ts",
"dev": "run-s gen-build-id vite-dev",
"build": "run-s type-check gen-build-id vite-build",
"preview": "vite preview",
"lint": "run-p type-check lint:*",
"lint:format": "biome format ./src",
"lint:js": "biome lint ./src",
"fix": "run-s fix:*",
"fix:format": "biome format --write ./src",
"fix:js": "biome lint --apply ./src",
"i18n-extract": "i18next src/**/*.tsx --config i18next-parser.config.js"
},
"dependencies": {
"@nostr-fetch/adapter-rx-nostr": "^0.14.1",
"@radix-ui/react-avatar": "^1.0.4",
"@radix-ui/react-dialog": "^1.0.5",
"@radix-ui/react-dropdown-menu": "2.0.6",
"@radix-ui/react-label": "^2.1.0",
"@radix-ui/react-select": "^2.0.0",
"@radix-ui/react-tabs": "^1.0.4",
"@shadow-panda/style-context": "^0.7.1",
"i18next": "^23.8.2",
"i18next-browser-languagedetector": "^8.0.0",
"jotai": "^2.7.2",
"js-easing-functions": "^1.0.3",
"lucide-react": "^0.451.0",
"nip07-awaiter": "^0.2.1",
"nostr-fetch": "^0.14.1",
"nostr-tools": "^2.3.2",
"react": "^18.3.1",
"react-dom": "^18.2.0",
"react-i18next": "^15.1.0",
"rx-nostr": "^1.8.1",
"rxjs": "^7.8.1",
"virtua": "^0.35.0"
},
"devDependencies": {
"@biomejs/biome": "^1.9.3",
"@pandacss/dev": "^0.37.2",
"@shadow-panda/preset": "^0.7.1",
"@types/node": "^20.12.5",
"@types/react": "^18.3.1",
"@types/react-dom": "^18.2.23",
"@vitejs/plugin-react": "^4.2.1",
"date-fns": "^4.1.0",
"i18next-parser": "^8.12.0",
"npm-run-all2": "^6.1.2",
"tsx": "^4.7.1",
"typescript": "^5.6.3",
"vite": "^5.2.14"
}
}