-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathpackage.json
66 lines (66 loc) · 2.16 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
{
"name": "@exactly-protocol/app",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "NODE_ENV=development NET=local next dev",
"build": "next build",
"goerli": "NODE_ENV=production NET=goerli next start",
"start": "NODE_ENV=production NET=mainnet next start",
"postinstall": "ts-node -P tsconfig.dev.json scripts/postinstall.ts",
"lint": "eslint ."
},
"engines": {
"node": ">=16"
},
"dependencies": {
"@emotion/react": "^11.10.4",
"@emotion/styled": "^11.10.4",
"@ethersproject/abstract-signer": "^5.7.0",
"@ethersproject/bignumber": "^5.7.0",
"@ethersproject/constants": "^5.7.0",
"@ethersproject/contracts": "^5.7.0",
"@ethersproject/providers": "^5.7.2",
"@mui/icons-material": "^5.10.9",
"@mui/material": "^5.10.11",
"@sentry/nextjs": "^7.16.0",
"@walletconnect/web3-provider": "^1.8.0",
"dayjs": "^1.11.6",
"graphql": "^16.6.0",
"graphql-request": "^5.0.0",
"next": "^12.3.1",
"protocol": "git+https://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:x-oauth-basic@github.com/exactly-protocol/protocol#cb51439bb567068d5e68ce9848309195fd2484bc",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-dropdown": "^1.11.0",
"react-loading-skeleton": "^3.1.0",
"react-spring": "^9.5.5",
"recharts": "^2.1.15",
"sass": "^1.55.0",
"sharp": "^0.31.1",
"web3modal": "^1.9.9"
},
"devDependencies": {
"@next/eslint-plugin-next": "^12.3.1",
"@sentry/cli": "^2.8.0",
"@typechain/ethers-v5": "^10.1.0",
"@types/eslint": "^8.4.8",
"@types/node": "^18.11.7",
"@types/react": "^18.0.23",
"@typescript-eslint/eslint-plugin": "^5.41.0",
"@typescript-eslint/parser": "^5.41.0",
"eslint": "^8.26.0",
"eslint-config-prettier": "^8.5.0",
"eslint-import-resolver-typescript": "^3.5.2",
"eslint-plugin-eslint-comments": "^3.2.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-react": "^7.31.10",
"eslint-plugin-react-hooks": "^4.6.0",
"prettier": "^2.7.1",
"ts-node": "^10.9.1",
"typechain": "^8.1.0",
"typescript": "^4.8.4"
}
}