forked from privy-io/create-next-app
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
38 lines (38 loc) · 1.12 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
{
"private": true,
"engines": {
"npm": ">=8.0.0 <9.0.0",
"node": ">=16.0.0 <17.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": {
"@gelatonetwork/relay-sdk": "^4.0.0",
"@headlessui/react": "^1.7.3",
"@heroicons/react": "^2.0.12",
"@privy-io/react-auth": "1.28.2",
"@reservoir0x/ethers-wallet-adapter": "^0.0.4",
"@reservoir0x/reservoir-sdk": "^1.1.14",
"@tailwindcss/forms": "^0.5.3",
"next": "latest",
"react": "18.2.0"
},
"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": "^4.7.2"
}
}