-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
31 lines (31 loc) · 1.21 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
{
"name": "zkagora-examples",
"version": "1.0.0",
"main": "index.js",
"repository": "https://github.com/bosagora/zkagora-aa-examples",
"author": "Evan <[email protected]>",
"license": "MIT",
"private": true,
"workspaces": ["contracts", "frontend"],
"devDependencies": {
"prettier": "^2.8.8"
},
"scripts": {
"test:contracts": "yarn workspace contracts test",
"deploy:contracts": "yarn workspace contracts deploy",
"deploy:l1_contracts": "yarn workspace l1_contracts deploy",
"compile:contracts": "yarn workspace contracts compile",
"deploy:greeter": "yarn workspace contracts greeter",
"deploy:gasless": "yarn workspace contracts gasless",
"deploy:allowList": "yarn workspace contracts allowList",
"deploy:nftGated": "yarn workspace contracts nftGated",
"deploy:fixedToken": "yarn workspace contracts fixedToken",
"deploy:nft": "yarn workspace contracts nft",
"deploy:token": "yarn workspace contracts token",
"serve:ui": "yarn workspace frontend dev",
"start:ui": "yarn workspace frontend start",
"build:ui": "yarn workspace frontend build",
"format": "prettier --write \"{frontend,contracts}/**/*.{ts,js,jsx,tsx}\""
},
"dependencies": {}
}