-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
39 lines (39 loc) · 2.1 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
{
"name": "token-launchpad",
"version": "0.12.4",
"author": "DFST",
"type": "module",
"license": "Apache-2.0",
"scripts": {
"test": "node --trace-uncaught --loader=ts-node/esm --enable-source-maps -r dotenv/config --require dotenv/config --env-file=.env --test",
"test-next": "NODE_NO_WARNINGS=1 node --enable-source-maps -r source-map-support/register -r dotenv/config --require dotenv/config --env-file=.env --import 'data:text/javascript,import { register } from \"node:module\"; import { pathToFileURL } from \"node:url\"; register(\"ts-node/esm\", pathToFileURL(\"./\"));' --test",
"test:watch": "node --test --watch test/**/*.test.{js,ts}",
"compile": "yarn test ./test/compile-testnet.test.ts && yarn test ./test/compile-mainnet.test.ts",
"local": "CHAIN=local CLOUD=local COMPILE=false DEBUG=false yarn test ./test/worker.test.ts",
"local:advanced": "CHAIN=local CLOUD=local COMPILE=false ADVANCED_ADMIN=true WHITELIST_OFFER=true NODE_OPTIONS='--inspect --trace-uncaught' npm run test ./test/worker.test.ts",
"lightnet": "CHAIN=lightnet CLOUD=local COMPILE=false npm run test ./test/worker.test.ts",
"devnet:local": "CHAIN=devnet CLOUD=local COMPILE=false npm run test ./test/worker.test.ts",
"devnet:zkcloudworker": "CHAIN=devnet CLOUD=zkcloudworker COMPILE=false npm run test ./test/worker.test.ts",
"zeko:local": "CHAIN=zeko CLOUD=local COMPILE=false yarn test ./test/worker.test.ts",
"zeko:zkcloudworker": "CHAIN=zeko CLOUD=zkcloudworker COMPILE=false yarn test ./test/worker.test.ts",
"zeko:zkcloudworker:advanced": "CHAIN=zeko CLOUD=zkcloudworker COMPILE=false ADVANCED_ADMIN=true WHITELIST_OFFER=true yarn test ./test/worker.test.ts"
},
"node": {
"version": ">=20.0.0"
},
"devDependencies": {
"@types/node": "^22.10.2",
"dotenv": "^16.4.7",
"ts-node": "^10.9.2",
"typescript": "^5.7.2"
},
"packageManager": "[email protected]",
"dependencies": {
"@minatokens/abi": "^0.12.4",
"@minatokens/api": "^0.12.4",
"@minatokens/storage": "^0.12.4",
"@minatokens/token": "^0.12.4",
"o1js": "2.2.0",
"zkcloudworker": "^0.23.3"
}
}