forked from privy-io/create-next-app
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
53 lines (53 loc) · 1.44 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
{
"private": true,
"engines": {
"npm": ">=8.0.0 <10.0.0",
"node": ">=18.0.0 <19.0.0"
},
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"format": "npx prettier --write \"{__tests__,components,pages,styles}/**/*.{ts,tsx,js,jsx}\"",
"lint": "next lint && npx prettier --check \"{__tests__,components,pages,styles}/**/*.{ts,tsx,js,jsx}\" && npx tsc --noEmit"
},
"dependencies": {
"@irys/query": "^0.0.2",
"@irys/sdk": "^0.1.4",
"@privy-io/react-auth": "^1.47.2",
"@radix-ui/react-dialog": "^1.0.5",
"@radix-ui/react-icons": "^1.3.0",
"@radix-ui/react-label": "^2.0.2",
"@radix-ui/react-popover": "^1.0.7",
"@radix-ui/react-radio-group": "^1.1.3",
"@radix-ui/react-slot": "^1.0.2",
"class-variance-authority": "^0.7.0",
"clsx": "^2.1.0",
"cmdk": "^0.2.0",
"dayjs": "^1.11.10",
"framer-motion": "^10.18.0",
"lucide-react": "^0.309.0",
"next": "latest",
"next-pwa": "^5.6.0",
"pica": "^9.0.1",
"react": "18.2.0",
"react-webcam": "^7.2.0",
"tailwind-merge": "^2.2.0",
"tailwindcss-animate": "^1.0.7",
"vaul": "^0.8.0",
"viem": "^2.0.5"
},
"devDependencies": {
"@tsconfig/node16-strictest-esm": "^1.0.3",
"@types/node": "^17.0.35",
"@types/react": "18.0.9",
"autoprefixer": "^10.4.7",
"dotenv-cli": "^6.0.0",
"eslint": "^8.23.0",
"eslint-config-next": "12.2.5",
"postcss": "^8.4.14",
"tailwindcss": "^3.1.2",
"ts-node": "^10.9.1",
"typescript": "^5.3.3"
}
}