forked from thundercore/thunder-box
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
33 lines (33 loc) · 992 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
{
"name": "thunder-box",
"version": "1.0.0",
"description": "ThunderCore Truffle Box Boilerplate",
"main": "index.js",
"repository": "[email protected]:thundercore/thunder-box.git",
"author": "Lucien Lee <[email protected]>",
"license": "MIT",
"keywords": [
"ethereum",
"thundercore",
"smart contract"
],
"dependencies": {
"@truffle/hdwallet-provider": "^1.0.34",
"truffle": "^5.1.22"
},
"devDependencies": {
"solium": "^1.2.4"
},
"scripts": {
"compile": "truffle compile",
"compile:testnet": "truffle compile --network thunder-testnet",
"compile:mainnet": "truffle compile --network thunder-mainnet",
"migrate": "truffle migrate",
"migrate:testnet": "truffle migrate --network thunder-testnet",
"migrate:mainnet": "truffle migrate --network thunder-mainnet",
"test": "truffle test",
"clean": "rm -rf build/contracts",
"lint": "solium -d contracts/",
"lint:fix": "solium -d contracts/ --fix"
}
}