-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
35 lines (35 loc) · 1.31 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
{
"name": "nft-standard-draft",
"version": "0.2.0",
"author": "DFST",
"type": "module",
"license": "Apache-2.0",
"scripts": {
"test": "NODE_NO_WARNINGS=1 node --loader=ts-node/esm --enable-source-maps -r dotenv/config --require dotenv/config --env-file=.env --test",
"compile": "yarn test compile-testnet && yarn test compile-mainnet",
"local": "CHAIN=local CLOUD=local WHITELIST=false yarn test test/contract.test.ts",
"local:whitelist": "CHAIN=local CLOUD=local WHITELIST=true yarn test test/contract.test.ts",
"devnet": "CHAIN=devnet CLOUD=local WHITELIST=false yarn test test/contract.test.ts",
"devnet:whitelist": "CHAIN=local CLOUD=local WHITELIST=true yarn test test/contract.test.ts",
"zeko": "CHAIN=zeko CLOUD=local WHITELIST=false yarn test test/contract.test.ts",
"zeko:whitelist": "CHAIN=zeko CLOUD=local WHITELIST=true yarn test test/contract.test.ts"
},
"devDependencies": {
"@types/node": "^22.10.1",
"dotenv": "^16.4.5",
"ts-node": "^10.9.2",
"typescript": "^5.7.2"
},
"node": {
"version": ">=20.0.0"
},
"packageManager": "[email protected]",
"dependencies": {
"@minatokens/storage": "^0.1.0",
"algoliasearch": "^5.15.0",
"mina-signer": "^3.0.7",
"o1js": "2.1.0",
"unique-names-generator": "^4.7.1",
"zkcloudworker": "^0.20.3"
}
}