-
Notifications
You must be signed in to change notification settings - Fork 15
/
Copy pathpackage.json
69 lines (69 loc) · 2.32 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
{
"name": "damus-website",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "concurrently npm:dev-website npm:storybook",
"dev-website": "next dev",
"build": "./build",
"build-staging": "./build staging",
"build-dev": "./build dev",
"start": "next start",
"export": "npm run i18n && next export",
"lint": "next lint",
"extract:i18n": "formatjs extract 'src/{pages,components}/**/*.{js,ts,tsx}' --preserve-whitespace --format transifex --id-interpolation-pattern '[sha512:contenthash:base64:6]' --out-file content/locales/en.json",
"compile:i18n": "formatjs compile-folder --ast --format transifex content/locales content/compiled-locales",
"i18n": "npm run extract:i18n && npm run compile:i18n",
"storybook": "storybook dev -p 6006",
"build-storybook": "storybook build"
},
"dependencies": {
"@radix-ui/react-accordion": "^1.1.2",
"@radix-ui/react-alert-dialog": "^1.0.5",
"@radix-ui/react-label": "^2.0.2",
"@radix-ui/react-navigation-menu": "^1.1.4",
"@radix-ui/react-slot": "^1.0.2",
"@radix-ui/react-tabs": "^1.1.0",
"class-variance-authority": "^0.7.0",
"@number-flow/react": "0.4.0",
"clsx": "^2.0.0",
"framer-motion": "^10.16.4",
"input-otp": "^1.2.3",
"lnmessage": "^0.2.7",
"lucide-react": "^0.287.0",
"next": "13.5.4",
"nostr-tools": "^2.1.2",
"qrcode.react": "^3.1.0",
"react": "^18",
"react-dom": "^18",
"react-intl": "^6.4.7",
"react-markdown": "^9.0.1",
"tailwind-merge": "^1.14.0",
"tailwindcss-animate": "^1.0.7",
"usehooks-ts": "^2.9.2"
},
"devDependencies": {
"@chromatic-com/storybook": "^3.2.3",
"@formatjs/cli": "^6.2.0",
"@storybook/addon-essentials": "^8.4.7",
"@storybook/addon-interactions": "^8.4.7",
"@storybook/addon-onboarding": "^8.4.7",
"@storybook/addon-styling": "^2.0.0",
"@storybook/blocks": "^8.4.7",
"@storybook/nextjs": "^8.4.7",
"@storybook/react": "^8.4.7",
"@storybook/test": "^8.4.7",
"@types/node": "^20",
"@types/react": "^18",
"@types/react-dom": "^18",
"autoprefixer": "^10",
"concurrently": "^9.1.2",
"eslint": "^8",
"eslint-config-next": "13.5.4",
"eslint-plugin-storybook": "^0.11.1",
"postcss": "^8",
"storybook": "^8.4.7",
"tailwindcss": "^3",
"typescript": "^5"
}
}