forked from liteflow-labs/starter-kit
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
84 lines (84 loc) · 2.79 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
{
"name": "starter-kit",
"version": "2.1.1",
"private": true,
"scripts": {
"clean": "rimraf .next",
"predev": "npm run graphql-codegen",
"prebuild": "npm run graphql-codegen",
"dev": "next dev",
"build": "next build",
"lint": "next lint && npm run lint:gql && npm run lint:prettier",
"lint:prettier": "prettier \"**/*.{js,ts,tsx,json,md,gql,graphql}\" --check",
"lint:gql": "eslint -c .eslintrc.gql.js --no-eslintrc \"**/*.gql\"",
"analyze": "ANALYZE=true npm run build",
"start": "next start",
"graphql-codegen": "graphql-codegen --overwrite"
},
"dependencies": {
"@apollo/client": "^3.8.9",
"@bugsnag/js": "^7.22.3",
"@bugsnag/plugin-react": "^7.19.0",
"@chakra-ui/react": "^2.8.2",
"@ethersproject/address": "^5.7.0",
"@ethersproject/bignumber": "^5.7.0",
"@ethersproject/units": "^5.7.0",
"@liteflow/react": "^3.0.0",
"@magiclabs/wagmi-connector": "^1.1.6",
"@metamask/jazzicon": "^2.0.0",
"@nft/chat": "^0.2.0",
"@nft/webhook": "^1.0.0-beta.51",
"@rainbow-me/rainbowkit": "^1.3.3",
"@react-icons/all-files": "^4.1.0",
"@uiw/react-markdown-preview": "^5.0.7",
"@vercel/analytics": "^1.3.1",
"bignumber.js": "^9.1.1",
"dayjs": "^1.11.10",
"embla-carousel-react": "^8.0.0-rc19",
"graphql-request": "^6.1.0",
"jwt-decode": "^4.0.0",
"lru-cache": "^10.1.0",
"next": "^14.0.4",
"next-remove-imports": "^1.0.12",
"next-translate": "^2.6.2",
"nextjs-google-analytics": "^2.3.3",
"nodemailer": "^6.9.8",
"nprogress": "^0.2.0",
"numbro": "^2.4.0",
"pg": "^8.11.2",
"react": "^18.2.0",
"react-cookie": "^7.0.1",
"react-dom": "^18.2.0",
"react-dropzone": "^14.2.3",
"react-hook-form": "^7.49.3",
"ts-invariant": "^0.10.3",
"universal-cookie": "^7.0.1",
"viem": "^1.21.4",
"wagmi": "^1.4.13"
},
"devDependencies": {
"@graphql-codegen/cli": "^5.0.0",
"@graphql-codegen/typescript": "^4.0.1",
"@graphql-codegen/typescript-operations": "^4.0.1",
"@graphql-codegen/typescript-react-apollo": "^4.1.0",
"@graphql-eslint/eslint-plugin": "^3.20.1",
"@next/bundle-analyzer": "^14.0.4",
"@nft/api-graphql": "^1.0.0-beta.52",
"@types/nodemailer": "^6.4.14",
"@types/nprogress": "^0.2.3",
"@types/pg": "^8.10.2",
"@types/react": "^18.2.48",
"@types/react-linkify": "^1.0.4",
"@typescript-eslint/eslint-plugin": "^6.19.0",
"@typescript-eslint/parser": "^6.19.0",
"eslint": "^8.56.0",
"eslint-config-next": "^14.0.4",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-deprecation": "^2.0.0",
"eslint-plugin-unused-imports": "^3.0.0",
"next-translate-plugin": "^2.6.2",
"prettier": "^3.2.4",
"prettier-plugin-organize-imports": "^3.2.4",
"typescript": "^5.3.3"
}
}