-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
73 lines (73 loc) · 3.31 KB
/
package.json
File metadata and controls
73 lines (73 loc) · 3.31 KB
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
67
68
69
70
71
72
73
{
"name": "gregoswap",
"packageManager": "yarn@4.5.2",
"private": true,
"version": "0.0.0",
"type": "module",
"scripts": {
"clean": "rm -rf ./dist .tsbuildinfo",
"dev": "NODE_OPTIONS=--max_http_header_size=128000 vite",
"build": "tsc -b && vite build",
"lint": "eslint .",
"copy:dependencies": "WORKDIR=$(pwd) && mkdir -p $WORKDIR/contracts/target && cp $WORKDIR/node_modules/@aztec/noir-contracts.js/artifacts/token_contract-Token.json $WORKDIR/contracts/target/token_contract-Token.json",
"compile:contracts": "cd contracts && aztec compile && aztec codegen ./target -o ./target",
"test": "cd contracts && aztec test",
"add-fpc": "node --experimental-transform-types scripts/add-subscription-fpc.ts",
"preview": "NODE_OPTIONS=--max_http_header_size=128000 vite preview",
"deploy:local": "node --experimental-transform-types scripts/deploy.ts --network local",
"deploy:devnet": "node --experimental-transform-types scripts/deploy.ts --network devnet",
"deploy:nextnet": "node --experimental-transform-types scripts/deploy.ts --network nextnet",
"deploy:testnet": "node --experimental-transform-types scripts/deploy.ts --network testnet",
"mint:local": "node --experimental-transform-types scripts/mint.ts --network local",
"mint:testnet": "node --experimental-transform-types scripts/mint.ts --network testnet",
"formatting": "run -T prettier --check ./src && run -T eslint ./src",
"formatting:fix": "run -T eslint --fix ./src && run -T prettier -w ./src",
"local-aztec:enable": "node scripts/toggle-local-aztec.js enable && corepack yarn install",
"local-aztec:disable": "node scripts/toggle-local-aztec.js disable && corepack yarn install",
"local-aztec:status": "node scripts/toggle-local-aztec.js status"
},
"dependencies": {
"@aztec/accounts": "v4.2.0-nightly.20260412",
"@aztec/aztec.js": "v4.2.0-nightly.20260412",
"@aztec/constants": "v4.2.0-nightly.20260412",
"@aztec/entrypoints": "v4.2.0-nightly.20260412",
"@aztec/foundation": "v4.2.0-nightly.20260412",
"@aztec/noir-contracts.js": "v4.2.0-nightly.20260412",
"@aztec/protocol-contracts": "v4.2.0-nightly.20260412",
"@aztec/pxe": "v4.2.0-nightly.20260412",
"@aztec/stdlib": "v4.2.0-nightly.20260412",
"@aztec/wallet-sdk": "v4.2.0-nightly.20260412",
"@emotion/react": "^11.14.0",
"@emotion/styled": "^11.14.0",
"@gregojuice/contracts": "^0.0.15",
"@gregojuice/embedded-wallet": "^0.0.15",
"@mui/icons-material": "^6.3.1",
"@mui/material": "^6.3.1",
"@mui/styles": "^6.3.1",
"buffer-json": "^2.0.0",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-dropzone": "^14.3.5",
"zod": "^3.23.8"
},
"devDependencies": {
"@aztec/wallets": "v4.2.0-nightly.20260412",
"@eslint/js": "^9.18.0",
"@playwright/test": "1.49.0",
"@types/buffer-json": "^2",
"@types/node": "^22.15.17",
"@types/react": "^19.0.6",
"@types/react-dom": "^19.0.3",
"@vitejs/plugin-react-swc": "^3.7.2",
"eslint": "^9.26.0",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-react-hooks": "^5.1.0",
"eslint-plugin-react-refresh": "^0.4.18",
"globals": "^15.14.0",
"prettier": "^3.5.3",
"typescript": "~5.7.3",
"typescript-eslint": "^8.11.0",
"vite": "^7.1.4",
"vite-plugin-node-polyfills": "^0.24.0"
}
}