This repository has been archived by the owner on May 12, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
63 lines (63 loc) · 2.01 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
{
"name": "mvg-governance",
"private": true,
"scripts": {
"dev": "npm run pregenerate && next dev",
"build": "npm run pregenerate && next build",
"start": "npm run pregenerate && next start",
"pregenerate": "bash scripts/pregenerate.sh",
"lint": "next lint",
"type-check": "tsc --noEmit",
"postinstall": "husky install && rm -r node_modules/apollo-language-server/node_modules/graphql",
"apollo:codegen": "apollo client:codegen --target typescript --tsFileExtension=d.ts --outputFlat src/@types/apollo/",
"graphql:graphTypes": "graphql-codegen --config codegen.yml"
},
"dependencies": {
"@coingecko/cryptoformat": "^0.4.4",
"@fontsource/overpass": "^4.5.2",
"@oceanprotocol/lib": "^0.20.0",
"@urql/introspection": "^0.3.2",
"axios": "^0.26.1",
"classnames": "^2.3.1",
"colors": "^1.4.0",
"date-fns": "^2.27.0",
"decimal.js": "^10.3.1",
"ethers": "^5.5.2",
"graphql": "^15.8.0",
"next": "12.0.7",
"react": "17.0.2",
"react-dom": "17.0.2",
"react-dotdotdot": "^1.3.1",
"react-toastify": "^8.1.1",
"swr": "^1.2.2",
"urql": "^2.2.0",
"web3": "^1.7.1"
},
"devDependencies": {
"@graphql-codegen/cli": "^2.6.2",
"@graphql-codegen/introspection": "^2.1.1",
"@graphql-codegen/typescript": "^2.5.1",
"@graphql-codegen/typescript-operations": "^2.4.2",
"@graphql-codegen/typescript-react-apollo": "^3.2.16",
"@svgr/webpack": "^6.1.2",
"@types/node": "16.11.12",
"@types/react": "^17.0.40",
"@typescript-eslint/eslint-plugin": "^5.6.0",
"@typescript-eslint/parser": "^5.6.0",
"apollo": "^2.34.0",
"eslint": "^8.4.1",
"eslint-config-next": "12.0.7",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-react": "^7.27.1",
"eslint-plugin-react-hooks": "^4.3.0",
"husky": "^7.0.4",
"prettier": "^2.5.1",
"pretty-quick": "^3.1.2",
"typescript": "4.5.2"
},
"engines": {
"node": ">=14"
},
"main": "apollo.config.js"
}