-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
32 lines (32 loc) · 1.12 KB
/
package.json
File metadata and controls
32 lines (32 loc) · 1.12 KB
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
{
"name": "NFTChallengeCore",
"version": "1.0.0",
"description": "",
"main": "truffle-config.js",
"directories": {
"test": "test"
},
"scripts": {
"dev": "lite-server",
"clean": "rm -rf ./build/",
"compile": "truffle compile",
"test": "echo \"Error: no test specified\" && exit 1",
"deploy": "npm run deploy:development",
"deploy:development": "npm run clean && npm run compile && export NETWORK='development' && truffle migrate",
"deploy:aurora": "npm run clean && npm run compile && export NETWORK='aurora' && truffle migrate --network aurora",
"deploy:testnet": "npm run clean && npm run compile && export NETWORK='testnet' && truffle migrate --network testnet",
"deploy:ropsten": "npm run clean && npm run compile && export NETWORK='ropsten' && truffle migrate --network ropsten"
},
"author": "dev@aurora.dev",
"license": "ISC",
"devDependencies": {
"lite-server": "^2.3.0",
"truffle-hdwallet-provider": "^1.0.17",
"web3": "^1.2.9",
"web3-provider-engine": "~15.0.12"
},
"dependencies": {
"truffle-contract": "^4.0.31",
"solc": "^0.8.7-fixed"
}
}