-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.31 KB
/
Copy pathpackage.json
File metadata and controls
51 lines (51 loc) · 1.31 KB
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
{
"name": "autopilot-mini-app",
"version": "0.0.3",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"lint:fix": "next lint --fix",
"format": "prettier --write .",
"format:check": "prettier --check .",
"typecheck": "tsc --noEmit",
"test:sheets": "ts-node --project tsconfig.test.json testGoogleSheets.ts"
},
"dependencies": {
"@apollo/client": "^3.11.10",
"@base-org/account": "^2.5.6",
"@coinbase/wallet-sdk": "^4.3.7",
"@tanstack/react-query": "^5.61.0",
"@wagmi/connectors": "^8.0.16",
"@wagmi/core": "^3.5.1",
"axios": "^1.9.0",
"googleapis": "^144.0.0",
"graphql": "^16.0.0",
"next": "^15.0.5",
"ox": "^0.14.29",
"react": "18.2.0",
"react-dom": "18.2.0",
"recharts": "^2.15.3",
"viem": "2.x",
"wagmi": "^3.6.17",
"ws": "^8.21.0"
},
"devDependencies": {
"@types/node": "^20",
"@types/react": "^18",
"@types/react-dom": "^18",
"autoprefixer": "^10.4.21",
"dotenv": "^16.5.0",
"eslint": "^8",
"eslint-config-next": "^15.0.5",
"pino-pretty": "^13.0.0",
"postcss": "^8.5.3",
"prettier": "^3.5.3",
"tailwindcss": "^3.4.17",
"ts-node": "^10.9.2",
"tsconfig-paths": "^4.2.0",
"typescript": "^5.9.3"
}
}