-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
47 lines (47 loc) · 1.51 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
{
"name": "@hydeenoble/blockchain-developer-bootcamp-final-project",
"version": "1.0.0",
"description": "\"Blockchain Todo List Powered By Ethereum\"",
"main": "truffle-config.js",
"directories": {
"test": "test"
},
"scripts": {
"dev": "lite-server",
"test": "echo \"Error: no test specified\" && sexit 1",
"prettier:solidity": "./node_modules/.bin/prettier --write contracts/**/*.sol",
"build": "./node_modules/.bin/truffle compile"
},
"repository": {
"type": "git",
"url": "git+https://github.com/hydeenoble/blockchain-developer-bootcamp-final-project.git"
},
"keywords": [
"ETH",
"ConsenSys"
],
"author": "Idowu Emehinola <hydeenoble39@gmail.com>",
"license": "ISC",
"bugs": {
"url": "https://github.com/hydeenoble/blockchain-developer-bootcamp-final-project/issues"
},
"homepage": "https://github.com/hydeenoble/blockchain-developer-bootcamp-final-project#readme",
"dependencies": {
"@openzeppelin/contracts": "^4.3.3",
"@truffle/hdwallet-provider": "^1.7.0",
"bootstrap": "^5.1.3",
"bootstrap-icons": "^1.7.0",
"dotenv": "^10.0.0",
"lite-server": "^2.6.1",
"nodemon": "^2.0.15",
"prettier": "^2.4.1",
"prettier-plugin-solidity": "^1.0.0-beta.19",
"truffle": "^5.4.19",
"truffle-contract": "^4.0.31",
"web3": "^1.6.0"
},
"engines": {
"node": "16.x",
"npm": "7.x"
}
}