-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
68 lines (68 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
{
"name": "kickstarter-web3-helper",
"version": "0.1.0",
"private": true,
"scripts": {
"test": "jest",
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"gen:types": "npm run gen:types:factory && npm run gen:types:campaign",
"gen:types:campaign": "abi-types-generator ./ethereum/build/Campaign.json --name=campaignTypes --output=./ethereum/types/",
"gen:types:factory": "abi-types-generator ./ethereum/build/CampaignFactory.json --name=factoryTypes --output=./ethereum/types/",
"compile:contract": "ts-node ./ethereum/compile.ts && npm run gen:types",
"deploy:contract": "ts-node ./ethereum/deploy.ts",
"postinstall": "npm run compile:contract",
"prepare": "husky install"
},
"dependencies": {
"@emotion/react": "^11.9.3",
"@emotion/styled": "^11.9.3",
"@mui/icons-material": "^5.8.4",
"@mui/material": "^5.8.4",
"@truffle/hdwallet-provider": "^2.0.8",
"final-form": "^4.20.7",
"fs-extra": "^10.1.0",
"ganache": "^7.1.0",
"next": "12.1.6",
"nextjs-progressbar": "^0.0.14",
"react": "18.2.0",
"react-dom": "18.2.0",
"react-final-form": "^6.5.9",
"solc": "^0.8.13",
"solc-typed-ast": "^10.0.0",
"web3": "^1.7.3",
"web3-eth-contract": "^1.7.3"
},
"devDependencies": {
"@types/fs-extra": "^9.0.13",
"@types/jest": "^27.4.0",
"@types/node": "17.0.42",
"@types/react": "18.0.12",
"@types/react-dom": "18.0.5",
"@typescript-eslint/eslint-plugin": "^5.30.3",
"@typescript-eslint/parser": "^5.30.3",
"eslint": "^8.19.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-next": "12.1.5",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-jsx-a11y": "^6.6.0",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-react": "^7.30.1",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-security": "^1.5.0",
"eslint-plugin-simple-import-sort": "^7.0.0",
"eslint-plugin-sonarjs": "^0.13.0",
"ethereum-abi-types-generator": "^1.3.2",
"husky": "^8.0.0",
"jest": "^27.4.7",
"lint-staged": "^12.4.0",
"prettier": "^2.5.1",
"sass": "^1.52.3",
"ts-jest": "^27.1.3",
"ts-node": "^10.8.1",
"typescript": "^4.7.3"
}
}