-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
62 lines (62 loc) · 1.69 KB
/
Copy pathpackage.json
File metadata and controls
62 lines (62 loc) · 1.69 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
61
62
{
"name": "basetime",
"version": "1.0.0",
"description": "Social onchain calendar for the Base ecosystem",
"private": true,
"scripts": {
"dev": "next dev --turbopack",
"build": "next build --turbopack",
"start": "next start",
"lint": "eslint . --ext .ts,.tsx",
"lint:fix": "eslint . --ext .ts,.tsx --fix",
"type-check": "tsc --noEmit",
"compile": "hardhat compile",
"test": "hardhat test",
"deploy": "hardhat run scripts/deploy.ts --network baseTestnet",
"deploy:local": "hardhat run scripts/deploy.ts --network localhost",
"verify": "hardhat verify --network baseTestnet",
"clean": "rm -rf .next out dist artifacts cache typechain-types"
},
"dependencies": {
"@coinbase/onchainkit": "^1.1.1",
"@farcaster/miniapp-sdk": "^0.2.1",
"@heroicons/react": "^2.2.0",
"@openzeppelin/contracts": "^5.4.0",
"@tanstack/react-query": "^5.90.5",
"date-fns": "^4.1.0",
"ethers": "^6.15.0",
"framer-motion": "^12.23.24",
"next": "15.5.6",
"react": "19.1.0",
"react-dom": "19.1.0",
"viem": "^2.38.3",
"wagmi": "^2.18.1"
},
"devDependencies": {
"@eslint/eslintrc": "^3",
"@nomicfoundation/hardhat-toolbox": "^6.1.0",
"@tailwindcss/postcss": "^4",
"@typechain/ethers-v6": "^0.5.1",
"@typechain/hardhat": "^9.1.0",
"@types/node": "^20",
"@types/react": "^19",
"@types/react-dom": "^19",
"eslint": "^9",
"eslint-config-next": "15.5.6",
"hardhat": "^3.0.7",
"tailwindcss": "^4",
"typescript": "^5"
},
"keywords": [
"base",
"calendar",
"events",
"onchain",
"social",
"nft",
"rsvp",
"miniapp"
],
"author": "BaseTime Team",
"license": "MIT"
}