This repository was archived by the owner on Jan 24, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
96 lines (96 loc) · 3.09 KB
/
package.json
File metadata and controls
96 lines (96 loc) · 3.09 KB
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
85
86
87
88
89
90
91
92
93
94
95
96
{
"name": "celo",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "npm-run-all -p build-fragment build-possible-types dev-next",
"dev-next": "next dev",
"build": "next build",
"start": "next start -p 4000",
"lint": "eslint --fix .",
"post-pr": "eslint --ext js,jsx,ts,tsx .",
"format": "prettier --write './**/*.{js,jsx,ts,tsx,css,md,json}' --config ./.prettierrc",
"build-fragment": "node ./schemaQuery.js ",
"build-possible-types": "node ./possibleTypesQuery.js"
},
"dependencies": {
"@apollo/client": "^3.3.11",
"@celo/base": "^1.0.1",
"@celo/connect": "^1.0.1",
"@celo/contractkit": "^1.0.1",
"@celo/utils": "^1.0.1",
"@celo/wallet-ledger": "^1.0.1",
"@celo/wallet-local": "^1.0.1",
"@date-io/date-fns": "^1.3.13",
"@devexpress/dx-react-chart": "^2.7.2",
"@devexpress/dx-react-chart-material-ui": "^2.7.2",
"@devexpress/dx-react-core": "^2.7.2",
"@ledgerhq/errors": "^5.25.0",
"@ledgerhq/hw-app-eth": "^5.25.1",
"@ledgerhq/hw-transport-u2f": "^5.22.0",
"@ledgerhq/hw-transport-webusb": "^5.25.0",
"@material-ui/core": "^4.11.0",
"@material-ui/icons": "^4.9.1",
"@material-ui/lab": "^4.0.0-alpha.56",
"@material-ui/pickers": "^3.2.10",
"@socialgouv/matomo-next": "^1.1.2",
"@types/debug": "^4.1.5",
"@types/recharts": "^1.8.16",
"@types/styled-components": "^5.1.4",
"bignumber.js": "^9.0.1",
"cross-fetch": "^3.0.6",
"date-fns": "^2.16.1",
"debug": "^4.3.1",
"elliptic": "^6.5.4",
"fp-ts": "^2.9.5",
"fs": "0.0.1-security",
"graphql": "^15.4.0",
"graphql-request": "^3.4.0",
"graphql-tools": "^6.2.6",
"io-ts": "^2.2.14",
"isomorphic-unfetch": "^3.1.0",
"moment": "^2.29.1",
"net": "^1.0.2",
"next": "^9.5.5",
"node-fetch": "^2.6.1",
"npm-run-all": "^4.1.5",
"numbro": "^2.3.2",
"qrcode.react": "^1.0.0",
"react": "^16.14.0",
"react-content-loader": "^5.1.3",
"react-copy-to-clipboard": "^5.0.2",
"react-countdown": "^2.3.1",
"react-dom": "16.13.1",
"react-hooks-global-state": "^1.0.1",
"react-jdenticon": "0.0.8",
"react-markdown": "^4.3.1",
"react-middle-ellipsis": "^1.1.0",
"react-text-overflow-middle-ellipsis": "^1.3.10-test4",
"recharts": "^1.8.5",
"remark": "^13.0.0",
"remark-gfm": "^1.0.0",
"styled-components": "^5.2.0",
"subscriptions-transport-ws": "^0.9.18",
"web3": "^1.3.4",
"ws": "^7.4.6"
},
"devDependencies": {
"@types/node": "^13.13.29",
"@types/react": "^16.9.53",
"@types/react-dom": "^16.9.8",
"@types/web3-provider-engine": "^14.0.0",
"@types/ws": "^7.2.9",
"@typescript-eslint/eslint-plugin": "^4.6.0",
"@typescript-eslint/parser": "^4.6.0",
"eslint": "^7.12.1",
"eslint-config-prettier": "^6.14.0",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-prettier": "^3.1.4",
"eslint-plugin-react": "^7.21.5",
"eslint-plugin-react-hooks": "^4.2.0",
"eslint-plugin-simple-import-sort": "^5.0.3",
"prettier": "^2.1.2",
"typescript": "^3.9.7",
"undefined": "^0.1.0"
}
}