forked from iotexproject/iotex-dapp-sample
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
69 lines (69 loc) · 1.93 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
67
68
69
{
"name": "iotex-dapp-sample",
"version": "0.1.0",
"license": "MIT",
"description": "Starter pack using Nextjs, React, Typescript, Chakra and Cypress",
"keywords": [
"next",
"react",
"typescript",
"chakra"
],
"scripts": {
"dev": "next dev",
"build": "next build",
"export": "next build && next export",
"start": "next start",
"test": "concurrently \"yarn start \" \"cypress open\"",
"test:ci": "cypress run --headless"
},
"dependencies": {
"@chakra-ui/icons": "^1.0.9",
"@chakra-ui/react": "^1.6.4",
"@emotion/react": "^11",
"@emotion/styled": "^11",
"@iotexproject/iotex-address-ts": "^1.0.2",
"@iotexproject/walletconnect-connector": "^6.2.0",
"@metamask/jazzicon": "^2.0.0",
"@uniwrap/uniwrap-core": "0.1.2",
"@web3-react/core": "^6.1.9",
"@web3-react/injected-connector": "^6.0.7",
"axios": "^0.21.1",
"bignumber.js": "^9.0.1",
"clipboard-polyfill": "^3.0.3",
"copy-to-clipboard": "^3.3.1",
"erc-20-abi": "^1.0.0",
"ethcall": "^4.1.3",
"ethers": "^5.1.3",
"events": "^3.3.0",
"framer-motion": "^4",
"lodash": "^4.17.21",
"mobx": "^6.2.0",
"mobx-react-lite": "^3.2.0",
"next": "^12.0.7",
"numeral": "^2.0.6",
"promise-retry": "^2.0.1",
"query-string": "^7.0.1",
"react": "^17.0.0",
"react-dom": "^17.0.0",
"react-error-boundary": "^3.1.1",
"react-hot-toast": "^1.0.2",
"react-icons": "^4.2.0",
"react-tiny-virtual-list": "^2.2.0",
"rollup-plugin-polyfill-node": "^0.6.2",
"sleep-promise": "^9.1.0",
"stream-browserify": "^3.0.0",
"type-fest": "^1.2.0",
"typed-emitter": "^1.3.1"
},
"devDependencies": {
"@cypress/react": "^4.16.4",
"@types/node": "^14.14.31",
"@types/react": "^17.0.0",
"@types/react-dom": "^17.0.0",
"@types/react-router-dom": "^5.1.7",
"concurrently": "^6.0.0",
"cypress": "^6.5.0",
"typescript": "^4.1.2"
}
}