-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
51 lines (51 loc) · 2.07 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
{
"name": "@mfigurski80/bond-token",
"private": true,
"version": "0.7.1",
"description": "",
"main": "index.js",
"directories": {
"test": "test"
},
"scripts": {
"build": "truffle compile --all",
"build:site": "snowpack build",
"dev": "truffle dev > /dev/null &",
"dev:site": "snowpack dev",
"dev:fund-account": "truffle exec scripts/fundAccount.js",
"test": "truffle test",
"test:ch": "bash -c \"comm -1 -2 <(git diff --name-only HEAD | grep -oP \\\"(?<=\\\\/)(\\\\w*)(?=\\\\.)\\\" | xargs -L 1 printf \\\"test/%s.test.js\\\\n\\\" | sort) <(ls ./test | xargs -L 1 printf \\\"test/%s\\\\n\\\") | xargs truffle test\"",
"test:prev-ch": "bash -c \"comm -1 -2 <(git diff --name-only HEAD~1 | grep -oP \\\"(?<=\\\\/)(\\\\w*)(?=\\\\.)\\\" | xargs -L 1 printf \\\"test/%s.test.js\\\\n\\\" | sort) <(ls ./test | xargs -L 1 printf \\\"test/%s\\\\n\\\") | xargs truffle test\"",
"coverage:DEPR": "truffle run coverage",
"coverage": "mkdir coverage; echo '<p>Coverage is temporarily deprecated</p>' > coverage/index.html",
"lint": "solhint contracts/*.sol contracts/**/*.sol",
"report-addresses": "truffle network && truffle network > public/addresses.txt",
"deploy:local": "DEPLOY_SUPPORTING_CONTRACTS='Y' truffle migrate --reset",
"deploy:testnet": "DEPLOY_SUPPORTING_CONTRACTS='Y' truffle migrate --network test --reset",
"deploy:lan": "truffle migrate --network localTest --reset",
"deploy:goerli": "truffle migrate --network goerli --reset",
"publish": "cd package && npm publish"
},
"author": "Mikolaj Figurski",
"license": "ISC",
"files": [
"dist"
],
"dependencies": {
"@openzeppelin/contracts": "^4.2.0",
"snowpack": "^3.8.8",
"vue": "^3.2.37",
"vue-web3": "^2.1.0"
},
"devDependencies": {
"@snowpack/plugin-vue": "^2.6.2",
"@truffle/hdwallet-provider": "^2.0.14",
"dotenv": "^16.0.1",
"eth-gas-reporter": "^0.2.22",
"solhint": "^3.3.6",
"solidity-coverage": "^0.7.21",
"truffle": "^5.5.3",
"truffle-assertions": "^0.9.2",
"truffle-contract-size": "^2.0.1"
}
}