forked from factorgroup/nightmarket
-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
66 lines (66 loc) · 2.22 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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
{
"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",
"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",
"sol:deploy": "tsc && npx hardhat run ./build/contracts/scripts/deploy.js --network xdai",
"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=TBA --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",
"@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",
"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"
}