-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
98 lines (98 loc) · 2.91 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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
{
"name": "station-app",
"version": "0.0.0",
"private": true,
"scripts": {
"dev": "next dev",
"track": "NEXT_PUBLIC_TRACK=true npm run dev",
"build": "npx prisma generate && next lint --fix && next build",
"start": "next start",
"prisma-dev": "npx prisma migrate dev",
"prisma-deploy": "npx prisma migrate deploy",
"lint": "eslint --ignore-path .gitignore --ext .js,.ts,.tsx .",
"prepare": "husky install",
"format": "prettier --check --ignore-path .gitignore .",
"format:fix": "prettier --write --ignore-path .gitignore ."
},
"prisma": {
"seed": "ts-node --compiler-options {\"module\":\"CommonJS\"} prisma/seed.ts"
},
"dependencies": {
"@dynamic-labs/sdk-react": "^0.15.16",
"@dynamic-labs/wagmi-connector": "^0.15.16",
"@amplitude/analytics-browser": "^1.9.1",
"@ethersproject/hash": "^5.7.0",
"@headlessui/react": "^1.7.10",
"@heroicons/react": "^2.0.14",
"@next/font": "^13.1.6",
"@prisma/client": "^4.10.1",
"@radix-ui/react-dropdown-menu": "^2.0.2",
"@radix-ui/react-navigation-menu": "^1.1.1",
"@radix-ui/react-select": "^1.2.0",
"@radix-ui/react-tabs": "^1.0.2",
"@sendgrid/mail": "^7.7.0",
"@types/node": "18.11.17",
"@types/react": "18.0.26",
"@types/react-dom": "18.0.9",
"class-variance-authority": "^0.4.0",
"clsx": "^1.2.1",
"eslint-config-next": "13.0.7",
"ethers": "^5.7.2",
"graphql": "^16.6.0",
"graphql-request": "^5.2.0",
"graphql-tag": "^2.12.6",
"lodash.debounce": "^4.0.8",
"lodash.get": "^4.4.2",
"lodash.isequal": "^4.5.0",
"merkletreejs": "^0.3.9",
"next": "^13.1.6",
"qrcode.react": "^3.1.0",
"react": "18.2.0",
"react-device-detect": "^2.2.3",
"react-dom": "18.2.0",
"react-hook-form": "^7.43.1",
"react-query": "^3.39.3",
"react-use": "^17.4.0",
"swr": "^2.0.3",
"tailwind-merge": "^1.9.1",
"typescript": "4.9.4",
"uuid": "^9.0.0",
"viem": "^0.1.21",
"wagmi": "^0.11.4",
"zod": "^3.20.6",
"zustand": "^4.3.3"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{js,ts,tsx}": [
"next lint --fix"
]
},
"devDependencies": {
"@faker-js/faker": "^7.6.0",
"@types/jsonwebtoken": "^9.0.1",
"@types/lodash.debounce": "^4.0.7",
"@types/lodash.get": "^4.4.7",
"@types/lodash.isequal": "^4.5.6",
"@types/uuid": "^9.0.1",
"@typescript-eslint/eslint-plugin": "^5.51.0",
"@typescript-eslint/parser": "^5.51.0",
"autoprefixer": "^10.4.13",
"eslint": "^8.33.0",
"eslint-plugin-unused-imports": "^2.0.0",
"husky": "^8.0.0",
"jsonwebtoken": "^9.0.0",
"lint-staged": "^13.1.1",
"postcss": "^8.4.20",
"prettier": "^2.8.4",
"prettier-plugin-organize-imports": "^3.2.2",
"prettier-plugin-tailwindcss": "^0.2.1",
"pretty-quick": "^3.1.3",
"prisma": "^4.10.1",
"tailwindcss": "^3.2.4"
}
}