-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 1.83 KB
/
package.json
File metadata and controls
43 lines (43 loc) · 1.83 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
33
34
35
36
37
38
39
40
41
42
43
{
"name": "partybidV2",
"version": "1.0.0",
"description": "AuctionCrowdfundV2 Contracts",
"main": "index.js",
"repository": "git@github.com:PartyDAO/partybidV2.git",
"author": "Lawrence Forman <me@merklejerk.com>",
"license": "Apache-2.0",
"private": true,
"scripts": {
"clean": "rm -rf out/ js/",
"build": "yarn build:sol && yarn build:ts",
"test": "yarn test:sol:run && yarn build:ts && yarn test:ts:run",
"test:gas": "yarn test:sol:run --gas-report",
"build:sol": "forge build --extra-output storageLayout",
"test:sol": "yarn build:sol && yarn test:sol:run",
"test:sol:run": "forge test",
"build:ts": "tsc -b",
"test:ts": "yarn build:ts && yarn test:ts:run",
"test:ts:run": "mocha -t 0 -b 'js/**/*.t.js'",
"deploy:rinkeby": "yarn build:ts && forge script ./deploy/rinkeby.sol -vvv --rpc-url https://eth-rinkeby.alchemyapi.io/v2/${ALCHEMY_API_KEY} --private-key ${PRIVATE_KEY} --broadcast --optimize --optimizer-runs 200 --ffi",
"deploy:goerli": "yarn build:ts && forge script ./deploy/goerli.sol -vvv --rpc-url https://eth-goerli.g.alchemy.com/v2/${ALCHEMY_API_KEY} --private-key ${PRIVATE_KEY} --broadcast --optimize --optimizer-runs 200 --ffi",
"decode-revert": "node js/utils/decode-revert.js",
"layout": "node js/utils/gen-storage-layout.js"
},
"devDependencies": {
"@types/chai": "^4.3.1",
"@types/mocha": "^9.1.1",
"@types/sinon-chai": "^3.2.8",
"@types/yargs": "^17.0.10",
"chai": "^4.3.6",
"ethereum-waffle": "^3.4.4",
"ethers": "^5.6.9",
"mocha": "^10.0.0",
"typescript": "^4.6.4"
},
"dependencies": {
"colors": "^1.4.0",
"glob": "^7.1.6",
"glob-promise": "^4.2.2",
"yargs": "^17.5.1"
}
}