-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
73 lines (73 loc) · 2.26 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
70
71
72
73
{
"name": "mojito",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev -p 8000",
"build": "next build",
"start": "next start",
"pm2": "pm2 start ./processes.json",
"server": "pm2 kill && pm2 start ./processes_dev.json && pm2 logs mojito",
"prod": "npm run build && pm2 kill && pm2 start ./processes_prod.json",
"auto": "pm2 start ./schedule/index.js"
},
"dependencies": {
"classnames": "^2.2.6",
"global": "^4.4.0",
"json-circular-stringify": "1.0.1",
"next": "10.0.1",
"numbro": "^2.3.2",
"pm2": "^5.1.0",
"react": "17.0.1",
"react-compound-timer": "^1.2.0",
"react-confirm-alert": "^2.6.2",
"react-countup": "^4.3.3",
"react-dom": "17.0.1",
"react-redux": "^7.2.2",
"react-router": "^5.2.0",
"react-switch": "^6.0.0",
"react-tooltip": "^4.2.10",
"react-top-loading-bar": "^2.0.1",
"react-typing-effect": "^2.0.5",
"use-wallet": "^0.8.0",
"web3": "^1.3.5",
"electron": "^13.2.1"
},
"devDependencies": {
"@babel/preset-env": "^7.13.15",
"@babel/register": "^7.13.16",
"@chainlink/contracts": "^0.1.6",
"@nomiclabs/hardhat-ethers": "^2.0.1",
"@nomiclabs/hardhat-etherscan": "^2.1.1",
"@nomiclabs/hardhat-truffle5": "^2.0.0",
"@nomiclabs/hardhat-waffle": "^2.0.1",
"@nomiclabs/hardhat-web3": "^2.0.0",
"@openzeppelin/contracts": "^3.0.0",
"@openzeppelin/contracts-ethereum-package": "^3.0.0",
"@openzeppelin/contracts-upgradeable": "^3.4.0",
"@openzeppelin/hardhat-upgrades": "^1.6.0",
"@zeit/next-css": "^1.0.1",
"@zeit/next-less": "^1.0.1",
"@zeit/next-source-maps": "^0.0.3",
"babel-plugin-transform-remove-console": "^6.9.4",
"bignumber.js": "^9.0.1",
"crypto-js": "^4.0.0",
"ethereum-waffle": "^3.2.0",
"ethers": "^5.0.31",
"hardhat": "^2.0.10",
"hardhat-abi-exporter": "^2.0.8",
"hardhat-log-remover": "^2.0.1",
"http-proxy-middleware": "^1.3.1",
"less": "^3.12.2",
"morgan": "^1.10.0",
"mysql2": "^1.7.0",
"next-i18next": "^7.0.1",
"next-images": "^1.6.2",
"node-schedule": "^2.0.0",
"nodemon": "^2.0.6",
"openzeppelin-solidity": "^2.5.1",
"react-clipboard.js": "^2.0.16",
"react-toastify": "^7.0.3",
"sequelize": "^5.21.1"
}
}