-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
60 lines (60 loc) · 1.55 KB
/
package.json
File metadata and controls
60 lines (60 loc) · 1.55 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
52
53
54
55
56
57
58
59
60
{
"name": "raffles",
"version": "0.1.0",
"description": "Non-custodial raffle application on Base",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"setup": "./scripts/post-deploy-setup.sh",
"test": "vitest --run",
"test:watch": "vitest",
"test:ui": "vitest --ui"
},
"repository": {
"type": "git",
"url": "http://[email protected]:35586/git/amanning3390/raffles"
},
"keywords": [
"raffle",
"base",
"web3",
"blockchain",
"non-custodial"
],
"author": "",
"license": "MIT",
"dependencies": {
"@coinbase/onchainkit": "^1.1.2",
"@neynar/nodejs-sdk": "^3.89.0",
"@neynar/react": "^1.2.22",
"@pigment-css/react": "^0.0.30",
"@tanstack/react-query": "^5.90.8",
"@types/node": "^24.10.1",
"@types/react": "^19.2.4",
"@types/react-dom": "^19.2.3",
"autoprefixer": "^10.4.20",
"clsx": "^2.1.1",
"eslint": "^9.39.1",
"eslint-config-next": "^16.0.2",
"next": "^16.0.2",
"postcss": "^8.4.49",
"react": "^19.2.0",
"react-dom": "^19.2.0",
"tailwind-merge": "^2.5.5",
"tailwindcss": "^3.4.17",
"typescript": "^5.9.3",
"viem": "^2.39.0",
"wagmi": "^2.19.3"
},
"devDependencies": {
"@testing-library/jest-dom": "^6.9.1",
"@testing-library/react": "^16.3.0",
"@testing-library/user-event": "^14.6.1",
"@vitejs/plugin-react": "^5.1.1",
"jsdom": "^27.2.0",
"vitest": "^4.0.9"
}
}