-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
executable file
·39 lines (39 loc) · 1023 Bytes
/
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
{
"name": "coinfund",
"version": "1.0.0",
"description": "A blockchain crowdfunding app deployed to the Rinkey testnet made with Solidity, Next.js (React), Tailwind and Web3.js.",
"main": "index.js",
"scripts": {
"test": "jest",
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint"
},
"author": "",
"license": "ISC",
"dependencies": {
"@headlessui/react": "^1.5.0",
"@heroicons/react": "^1.0.6",
"@tailwindcss/forms": "^0.5.0",
"@truffle/hdwallet-provider": "2.0.1",
"autoprefixer": "^10.4.4",
"classnames": "^2.3.1",
"fs-extra": "^10.0.0",
"mocha": "^9.2.2",
"next": "^12.1.5",
"postcss": "^8.4.12",
"prettier": "^2.6.2",
"react": "^18.0.0",
"react-dom": "^18.0.0",
"react-hot-toast": "^2.2.0",
"solc": "^0.8.9",
"tailwindcss": "^3.0.24",
"web3": "^1.7.3"
},
"devDependencies": {
"ganache-cli": "^6.12.2",
"dotenv": "^16.0.0",
"tailwindcss-font-inter": "^3.0.1"
}
}