-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
executable file
·42 lines (42 loc) · 1.13 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
{
"name": "tailwind-ts-starter",
"version": "0.0.1",
"scripts": {
"clean:js": "rm -rf node_modules",
"clean:sol": "rm -rf build",
"dev:front:js": "next -p 5000",
"build:front:js": "next build",
"start:front:js": "next start",
"test:sol": "truffle test",
"build:sol": "truffle compile",
"dev:deploy:sol": "truffle migrate --reset --network development",
"ganache:deploy:sol": "truffle migrate --reset --network ganache"
},
"dependencies": {
"@tailwindcss/ui": "0.6.2",
"axios": "^0.27.2",
"next": "10",
"raw-loader": "^4.0.2",
"react": "^16.13.1",
"react-dom": "^16.13.1",
"solc": "^0.8.14-fixed",
"swr": "^0.3.6",
"web3": "1.7.1",
"web3modal": "^1.9.7",
"ipfs-http-client": "^56.0.3"
},
"devDependencies": {
"@types/node": "14.14.2",
"@types/react": "16.9.53",
"bn.js": "^5.2.0",
"chai": "^4.3.4",
"chai-bn": "^0.3.0",
"postcss-flexbugs-fixes": "4.2.1",
"postcss-preset-env": "^6.7.0",
"tailwindcss": "^1.7.4",
"ts-node": "^9.0.0",
"typescript": "4.0.3",
"@openzeppelin/contracts": "^4.3.2"
},
"license": "MIT"
}