-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
61 lines (61 loc) · 1.86 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
{
"name": "frames-lenspost",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build --debug",
"start": "next start",
"lint": "next lint",
"types:check": "tsc --pretty --noEmit",
"prettier:check": "prettier --check .",
"lint:check": "eslint . --ext ts --ext tsx --ext js",
"prettier:format": "prettier --write .",
"test:all": "pnpm run types:check && pnpm run prettier:check && pnpm run lint:check && pnpm run build",
"prepare": "husky install"
},
"dependencies": {
"@airstack/frames": "^1.1.5",
"@airstack/frog": "^0.0.13",
"@apollo/client": "^3.11.6",
"@coinbase/onchainkit": "^0.23.1",
"@sentry/nextjs": "^7.105.0",
"@solana/web3.js": "^1.93.2",
"@tanstack/react-query": "^5.28.0",
"@wagmi/connectors": "^4.3.10",
"@wagmi/core": "^2.9.8",
"@zoralabs/zora-721-contracts": "^1.15.3",
"axios": "^1.7.2",
"dotenv": "^16.4.5",
"graphql-request": "^7.1.0",
"next": "14.2.3",
"react": "^18",
"react-dom": "^18",
"sonner": "^1.4.41",
"viem": "^2.9.29"
},
"devDependencies": {
"@commitlint/cli": "^19.4.1",
"@commitlint/config-conventional": "^19.4.1",
"@types/node": "^20",
"@types/react": "^18",
"@types/react-dom": "^18",
"@typescript-eslint/eslint-plugin": "^7.7.1",
"@typescript-eslint/parser": "^7.7.1",
"autoprefixer": "^10.0.1",
"eslint": "^8",
"eslint-config-next": "14.1.4",
"eslint-plugin-perfectionist": "^2.10.0",
"eslint-plugin-prettier": "^5.1.3",
"eslint-plugin-react": "^7.34.1",
"eslint-plugin-react-hooks": "^4.6.2",
"eslint-plugin-unicorn": "^52.0.0",
"eslint-plugin-unused-imports": "^3.1.0",
"husky": "^8.0.0",
"postcss": "^8",
"prettier": "^3.2.5",
"prettier-plugin-tailwindcss": "^0.5.14",
"tailwindcss": "^3.3.0",
"typescript": "^5"
}
}