-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
40 lines (40 loc) · 1.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
{
"name": "curioinvest-contracts",
"version": "1.0.2",
"private": true,
"description": "Smart-contracts of CurioInvest project",
"author": "Curio Capital AG",
"homepage": "https://github.com/CurioTeam/curioinvest-contracts",
"scripts": {
"compile": "npx truffle compile",
"console:develop": "npx truffle develop",
"console:ropsten": "npx truffle console --network ropsten",
"console:mainnet": "npx truffle console --network mainnet",
"test": "npm run compile && npx truffle test --network develop",
"lint:sol": "npx solhint --max-warnings 0 \"contracts/**/*.sol\"",
"clean": "rm -rf ./build",
"flatten": "scripts/flatten.sh"
},
"repository": {
"type": "git",
"url": "https://github.com/CurioTeam/curioinvest-contracts.git"
},
"bugs": {
"url": "https://github.com/CurioTeam/curioinvest-contracts/issues"
},
"devDependencies": {
"convict": "^4.4.1",
"dotenv": "^7.0.0",
"eth-gas-reporter": "^0.1.12",
"moment": "^2.24.0",
"openzeppelin-test-helpers": "^0.1.5",
"solhint": "^2.3.0",
"truffle": "^5.0.41",
"truffle-flattener": "^1.4.2",
"truffle-hdwallet-provider": "^1.0.17",
"web3-provider-engine": "^14.2.1"
},
"dependencies": {
"openzeppelin-solidity": "^2.3.0"
}
}