-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
68 lines (68 loc) · 2.06 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": "aloe",
"version": "0.0.1",
"description": "a ethereum project that sells an nft called aloe",
"main": "index.js",
"scripts": {
"build": "next build",
"start": "next start -p $PORT",
"compile": "truffle compile",
"migrate:dev": "truffle migrate --reset --network development",
"migrate:ropsten": "truffle migrate --reset --network ropsten",
"migrate:kovan": "truffle migrate --reset --network kovan",
"mint:dev": "truffle exec ./ethereum/scripts/mint.js --network development",
"mint:ropsten": "truffle exec ./ethereum/scripts/mint.js --network ropsten",
"mint:kovan": "truffle exec ./ethereum/scripts/mint.js --network kovan",
"heroku-postbuild": "yarn build",
"test": "truffle test",
"dev": "next dev"
},
"author": "Joseph Akayesi (https://josephakayesi.com)",
"license": "ISC",
"dependencies": {
"@openzeppelin/contracts": "^3.4.0",
"@openzeppelin/test-helpers": "^0.5.13",
"@truffle/hdwallet-provider": "^1.5.0",
"@types/react-combine-reducers": "^1.0.0",
"@walletconnect/web3-provider": "^1.6.6",
"babel-polyfill": "^6.26.0",
"bootstrap": "^5.0.0-beta3",
"chai": "^4.3.4",
"chai-as-promised": "^7.1.1",
"chai-bignumber": "^3.0.0",
"dotenv": "^10.0.0",
"framer-motion": "^4.1.17",
"identicon.js": "^2.3.3",
"ipfs-http-client": "^50.1.2",
"mocha": "^8.1.2",
"next": "^11.1.2",
"react": "^17.0.2",
"react-combine-reducers": "^1.1.1",
"react-dom": "^17.0.2",
"react-hot-toast": "^2.1.1",
"solc": "*",
"styled-components": "^5.3.1",
"web3": "^1.5.3",
"word-to-numbers": "^1.0.0"
},
"devDependencies": {
"@types/chai": "^4.2.22",
"@types/mocha": "^9.0.0",
"@types/node": "^16.9.6",
"@types/react": "^17.0.24",
"babel-loader": "^7.1.5",
"babel-plugin-styled-components": "^1.13.2",
"eslint": "7.32.0",
"eslint-config-next": "11.1.2",
"typechain": "^5.1.2",
"typescript": "^4.4.3"
},
"globals": [
"artifacts",
"contract",
"assert"
],
"cacheDirectories": [
".next/cache"
]
}