mirror of
https://github.com/factorgroup/nightmarket.git
synced 2026-01-09 21:48:17 -05:00
72 lines
2.4 KiB
JSON
72 lines
2.4 KiB
JSON
{
|
|
"name": "nightmarket",
|
|
"version": "0.0.1",
|
|
"description": "A zero knowledge coordinate marketplace for Dark Forest",
|
|
"main": "index.js",
|
|
"scripts": {
|
|
"postinstall": "./scripts/postinstall.sh",
|
|
"circom:test": "mocha ./circuits/test --max-old-space-size=4000",
|
|
"circom:dev": "hardhat circom --deterministic --debug --verbose",
|
|
"circom:prod": "hardhat circom --verbose",
|
|
"circom:app": "./scripts/client_final_circuits.sh",
|
|
"sol:clean": "npx hardhat clean",
|
|
"sol:compile": "./scripts/reformat-verifier-sol.sh && npx hardhat compile",
|
|
"sol:test": "tsc && npx hardhat test ./build/contracts/test/nightMarket.js",
|
|
"deploy:verifiers": "tsc && npx hardhat run ./build/contracts/scripts/deployVerifiers.js --network xdai",
|
|
"deploy:factory": "hardhat init-factory",
|
|
"deploy:nightmarket": "hardhat init-nm",
|
|
"app:dev": "tsc && df-plugin-dev-server --glob client/plugin/*.ts* --preact",
|
|
"app:build": "tsc && df-plugin-dev-server bundle --glob client/plugin/*.ts* --outdir=docs/ --preact"
|
|
},
|
|
"dependencies": {
|
|
"htm": "^3.1.0",
|
|
"preact": "^10.7.1",
|
|
"snarkjs": "^0.4.16"
|
|
},
|
|
"devDependencies": {
|
|
"@darkforest_eth/contracts": "^6.7.29",
|
|
"@darkforest_eth/hashing": "^6.7.19",
|
|
"@darkforest_eth/procedural": "^6.7.29",
|
|
"@darkforest_eth/types": "^6.7.29",
|
|
"@defi-wonderland/smock": "^2.0.7",
|
|
"@noble/ed25519": "^1.6.0",
|
|
"@nomiclabs/hardhat-ethers": "^2.0.5",
|
|
"@nomiclabs/hardhat-waffle": "^2.0.3",
|
|
"@openzeppelin/contracts": "^4.5.0",
|
|
"@projectsophon/df-plugin-dev-server": "^1.4.0",
|
|
"@typechain/ethers-v5": "^10.0.0",
|
|
"@typechain/hardhat": "^6.0.0",
|
|
"@types/chai": "^4.3.1",
|
|
"@types/mocha": "^9.1.0",
|
|
"@types/node": "^17.0.24",
|
|
"chai": "^4.3.6",
|
|
"circom_tester": "^0.0.10",
|
|
"circomlib": "^2.0.3",
|
|
"ethereum-waffle": "^3.4.4",
|
|
"ethereumjs-util": "^7.1.5",
|
|
"ethers": "^5.6.4",
|
|
"ffjavascript": "^0.2.52",
|
|
"hardhat": "^2.9.2",
|
|
"hardhat-circom": "^3.0.1",
|
|
"maci-crypto": "^1.0.4",
|
|
"maci-domainobjs": "^1.0.4",
|
|
"mocha": "^9.2.2",
|
|
"ts-node": "^10.7.0",
|
|
"typechain": "^8.0.0",
|
|
"typescript": "^4.6.3"
|
|
},
|
|
"engines": {
|
|
"node": ">=16"
|
|
},
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "git+https://github.com/0xSage/nightmarket.git"
|
|
},
|
|
"author": "0xSage",
|
|
"license": "ISC",
|
|
"bugs": {
|
|
"url": "https://github.com/0xSage/nightmarket/issues"
|
|
},
|
|
"homepage": "https://github.com/0xSage/nightmarket#readme"
|
|
}
|