forked from liteflow-labs/starter-kit
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
81 lines (81 loc) · 2.71 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
{
"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.3",
"@bugsnag/js": "^7.20.2",
"@bugsnag/plugin-react": "^7.19.0",
"@chakra-ui/react": "^2.7.1",
"@ethersproject/abstract-signer": "^5.7.0",
"@ethersproject/bignumber": "^5.7.0",
"@ethersproject/units": "^5.7.0",
"@everipedia/wagmi-magic-connector": "^1.0.2",
"@liteflow/core": "^1.3.0",
"@liteflow/react": "^1.3.0",
"@metamask/jazzicon": "^2.0.0",
"@nft/chat": "^0.2.0",
"@nft/webhook": "^1.0.0-beta.47",
"@rainbow-me/rainbowkit": "^1.0.6",
"@react-icons/all-files": "^4.1.0",
"@uiw/react-markdown-preview": "^4.1.16",
"bignumber.js": "^9.1.1",
"dayjs": "^1.11.9",
"embla-carousel-react": "^8.0.0-rc11",
"ethers": "^5.7.2",
"graphql-request": "^6.1.0",
"jwt-decode": "^3.1.2",
"lru-cache": "^10.0.3",
"next": "^13.5.4",
"next-remove-imports": "^1.0.12",
"next-translate": "^1.4.0",
"nextjs-google-analytics": "^2.3.3",
"nodemailer": "^6.9.3",
"nprogress": "^0.2.0",
"numbro": "^2.3.6",
"react": "^18.2.0",
"react-cookie": "^4.1.1",
"react-dom": "^18.2.0",
"react-dropzone": "^14.2.3",
"react-hook-form": "^7.45.1",
"ts-invariant": "^0.10.3",
"universal-cookie": "^4.0.4",
"wagmi": "^1.3.8"
},
"devDependencies": {
"@graphql-codegen/cli": "^4.0.1",
"@graphql-codegen/typescript": "^4.0.1",
"@graphql-codegen/typescript-operations": "^4.0.1",
"@graphql-codegen/typescript-react-apollo": "^3.3.7",
"@graphql-eslint/eslint-plugin": "^3.20.1",
"@next/bundle-analyzer": "^13.4.9",
"@nft/api-graphql": "^1.0.0-beta.47",
"@types/nodemailer": "^6.4.8",
"@types/nprogress": "^0.2.0",
"@types/react": "^18.2.15",
"@types/react-linkify": "^1.0.1",
"@typescript-eslint/eslint-plugin": "^5.60.1",
"@typescript-eslint/parser": "^5.60.1",
"eslint": "^8.44.0",
"eslint-config-next": "^13.4.9",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-deprecation": "^1.4.1",
"eslint-plugin-unused-imports": "^2.0.0",
"prettier": "^2.8.8",
"prettier-plugin-organize-imports": "^3.2.3",
"typescript": "^5.1.6"
}
}