forked from CryptoBlades/cryptoblades
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
52 lines (52 loc) · 1.66 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
{
"name": "kryptoknights",
"version": "1.0.0",
"description": "",
"main": "truffle-config.js",
"directories": {
"test": "test"
},
"dependencies": {
"@chainlink/contracts": "^0.1.7",
"@openzeppelin/contracts": "^3.4.1",
"@openzeppelin/contracts-upgradeable": "^3.4.1",
"@truffle/hdwallet-provider": "^1.2.6",
"abdk-libraries-solidity": "2.4.0",
"dotenv": "^8.2.0"
},
"devDependencies": {
"@openzeppelin/test-helpers": "^0.5.11",
"@openzeppelin/truffle-upgrades": "^1.8.0",
"@truffle/config": "^1.2.41",
"@truffle/provider": "^0.2.32",
"bignumber.js": "^9.0.1",
"imagemin": "^8.0.0",
"imagemin-pngquant": "^9.0.2",
"lerna": "^4.0.0",
"ohm-js": "^15.5.0",
"shelljs": "^0.8.4",
"truffle": "^5.2.3",
"truffle-contract-size": "^2.0.1",
"truffle-export-abi": "^1.0.1",
"truffle-plugin-verify": "^0.5.7",
"yargs": "^17.0.1"
},
"scripts": {
"postinstall": "npm run contract:prepare && lerna exec -- npm install",
"lint": "lerna exec -- npm run lint",
"build:frontend": "cd frontend && npm run build",
"start:frontend": "cd frontend && npm start",
"contract:prepare": "npm run build",
"contract:deploy": "npm run deploy",
"build": "truffle compile",
"postbuild": "node scripts/generate-ts-from-abis.js",
"test": "truffle test",
"deploy": "truffle migrate --reset",
"deploy-testnet": "truffle migrate --network bsctestnet",
"deploy-mainnet-warning-be-careful-this-is-prod": "truffle migrate --network bscmainnet",
"deploy-mainnet-dry-run": "truffle migrate --network bscmainnet --dry-run"
},
"keywords": [],
"author": "",
"license": "ISC"
}