-
-
Notifications
You must be signed in to change notification settings - Fork 312
Expand file tree
/
Copy pathpackage.json
More file actions
58 lines (58 loc) · 1.81 KB
/
package.json
File metadata and controls
58 lines (58 loc) · 1.81 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
{
"name": "@unlock-protocol/airdrops",
"version": "0.1.0",
"private": true,
"peerDependencies": {
"react": "18.3.1",
"react-dom": "18.3.1"
},
"dependencies": {
"@headlessui/react": "2.2.0",
"@openzeppelin/merkle-tree": "1.0.8",
"@privy-io/react-auth": "2.6.2",
"@sentry/nextjs": "9.3.0",
"@tanstack/react-query": "5.66.11",
"@tw-classed/react": "1.8.0",
"@unlock-protocol/contracts": "workspace:*",
"@unlock-protocol/core": "workspace:./packages/core",
"@unlock-protocol/crypto-icon": "workspace:./packages/crypto-icon",
"@unlock-protocol/eslint-config": "workspace:./packages/eslint-config",
"@unlock-protocol/networks": "workspace:./packages/networks",
"@unlock-protocol/ui": "workspace:./packages/ui",
"@unlock-protocol/unlock-js": "workspace:./packages/unlock-js",
"@vercel/og": "0.6.5",
"@vercel/speed-insights": "1.2.0",
"dayjs": "1.11.13",
"embla-carousel-react": "8.5.2",
"eslint": "9.22.0",
"ethers": "6.13.5",
"next": "14.2.25",
"react-markdown": "10.0.0",
"tailwind-merge": "3.0.2",
"typescript": "5.8.2"
},
"devDependencies": {
"@types/react": "18.3.18",
"@unlock-protocol/tsconfig": "workspace:./packages/tsconfig",
"@vitejs/plugin-react": "4.3.4",
"autoprefixer": "10.4.20",
"jsdom": "26.0.0",
"postcss": "8.5.3",
"tailwindcss": "3.4.17",
"vitest": "3.0.9"
},
"scripts": {
"dev": "next dev",
"build": "next build --no-lint",
"deploy": "yarn build && next export -o out",
"start": "yarn build && NODE_ENV=production next start",
"test": "UNLOCK_ENV=test vitest run --coverage --environment=jsdom",
"lint": "eslint",
"ci": "yarn test && yarn lint && yarn build"
},
"browserslist": [
"defaults",
"not IE 11",
"maintained node versions"
]
}