-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
65 lines (65 loc) · 2.21 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
{
"name": "metagame-core",
"version": "1.0.0",
"private": false,
"license": "GPL-3.0-or-later",
"scripts": {
"dev": "concurrently --kill-others \"lt --port 3000 --subdomain core\" \"next dev\"",
"build": "next build",
"start": "next start",
"format": "prettier --write \"**/*.ts\" \"**/*.tsx\"",
"lint": "eslint --ignore-path .eslintignore --ext .ts,.tsx .",
"type-check": "tsc",
"check": "yarn run type-check && yarn run lint && yarn run format",
"latest": "yarn upgrade evm-translator@latest",
"vercel-build": "next build"
},
"dependencies": {
"@apollo/client": "^3.6.9",
"@chakra-ui/icons": "^1.0.16",
"@chakra-ui/react": "^2.2.9",
"@datadog/browser-rum": "^4.16.0",
"@emotion/react": "^11.10.0",
"@emotion/styled": "^11.10.0",
"@fontsource/courier-prime": "^4.5.0",
"@fontsource/lato": "^4.5.0",
"@napi-rs/canvas": "^0.1.44",
"@rainbow-me/rainbowkit": "^0.5.0",
"axios": "^0.27.2",
"datadog-winston": "^1.5.1",
"ethers": "^5.5.1",
"evm-translator": "^0.3.9",
"framer-motion": "^7.2.1",
"ipfs-http-client": "50.1.2",
"lodash": "^4.17.21",
"mongoose": "^6.4.4",
"next": "^12.2.5",
"next-api-middleware": "^2.0.1",
"node-fetch": "^3.1.0",
"node-fetch-retry": "^2.0.0",
"onoma": "^0.1.1",
"quirrel": "^1.14.1",
"react": "^18.2.0",
"react-countdown": "^2.3.2",
"react-dom": "^18.2.0",
"wagmi": "^0.6.4",
"winston": "^3.3.3",
"zod": "^3.17.3"
},
"devDependencies": {
"@trivago/prettier-plugin-sort-imports": "^3.0.0",
"@types/gtag.js": "^0.0.8",
"@types/node": "^18.7.13",
"@types/react": "^18.0.17",
"@types/winston": "^2.4.4",
"@typescript-eslint/eslint-plugin": "^5.34.0",
"concurrently": "^7.3.0",
"create-chakra-icon": "^0.2.1",
"eslint": "^8.22.0",
"eslint-config-next": "^12.2.5",
"eslint-config-prettier": "^8.5.0",
"localtunnel": "^2.0.2",
"prettier": "^2.7.1",
"typescript": "^4.7.4"
}
}