-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
50 lines (50 loc) · 1.31 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
{
"name": "nextjs-with-typescript",
"version": "5.0.0",
"private": true,
"engines": {
"node": "16.x"
},
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"test": "mocha",
"compile_campaign": "node ethereum/compile.js",
"deploy_campaign": "node ethereum/deploy.js",
"post-update": "echo \"codesandbox preview only, need an update\" && yarn upgrade --latest"
},
"dependencies": {
"@emotion/cache": "latest",
"@emotion/react": "latest",
"@emotion/server": "latest",
"@emotion/styled": "latest",
"@hookform/resolvers": "^2.8.8",
"@material-ui/icons": "^4.11.3",
"@mui/icons-material": "^5.6.0",
"@mui/lab": "^5.0.0-alpha.72",
"@mui/material": "latest",
"@truffle/hdwallet-provider": "^1.7.0",
"fs-extra": "^10.0.1",
"ganache": "^7.0.3",
"ganache-cli": "^6.12.2",
"mocha": "^9.2.1",
"next": "latest",
"prettier": "^2.5.1",
"react": "latest",
"react-dom": "latest",
"react-hook-form": "^7.27.1",
"react-toastify": "^8.2.0",
"solc": "^0.8.12",
"web3": "^1.7.1",
"yup": "^0.32.11"
},
"devDependencies": {
"@types/node": "latest",
"@types/react": "latest",
"eslint": "latest",
"eslint-config-next": "latest",
"typescript": "latest"
}
}