-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
56 lines (56 loc) · 1.6 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
{
"name": "extended-ascii-plot-interface",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"dev": "next",
"start": "next start",
"build": "next build",
"export": "next export",
"format": "prettier --config .prettierrc.json --write .",
"gen": "cross-env typechain --target ethers-v5 --out-dir abi '../eap-contract/artifacts/contracts/ExtendedAsciiPlot*.sol/*[!dbg].json'",
"lint": "eslint ."
},
"author": "",
"license": "ISC",
"dependencies": {
"@emotion/css": "11.7.1",
"@emotion/server": "11.4.0",
"comlink": "4.3.1",
"ethers": "5.6.1",
"lodash": "4.17.21",
"mini-svg-data-uri": "1.4.4",
"next": "12.1.0",
"react": "17.0.2",
"react-dom": "17.0.2",
"react-virtualized-auto-sizer": "1.0.6",
"react-window": "1.8.6",
"sharp": "0.30.3",
"swr": "1.2.2",
"tiny-invariant": "1.2.0",
"use-wallet": "0.13.4"
},
"devDependencies": {
"@typechain/ethers-v5": "9.0.0",
"@types/lodash": "4.14.180",
"@types/react": "17.0.40",
"@types/react-dom": "17.0.13",
"@types/react-virtualized-auto-sizer": "1.0.1",
"@types/react-window": "1.8.5",
"@types/sharp": "0.30.0",
"cross-env": "7.0.3",
"eslint": "8.11.0",
"eslint-config-next": "12.1.0",
"eslint-config-prettier": "8.5.0",
"eslint-plugin-import": "2.25.4",
"eslint-plugin-jsx-a11y": "6.5.1",
"eslint-plugin-prettier": "4.0.0",
"eslint-plugin-react": "7.29.4",
"eslint-plugin-react-hooks": "4.3.0",
"next-pwa": "5.4.6",
"prettier": "2.6.0",
"typechain": "7.0.1",
"typescript": "4.6.2"
}
}