-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
116 lines (116 loc) · 4.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
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
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
{
"name": "privategroups",
"version": "1.0.0",
"main": "index.js",
"repository": "[email protected]:Cheetah0x/aztec-test.git",
"author": "Cheetah0x",
"license": "MIT",
"private": true,
"type": "module",
"dependencies": {
"@aztec/accounts": "0.65.2",
"@aztec/aztec.js": "0.65.2",
"@aztec/builder": "0.65.2",
"@aztec/noir-contracts.js": "0.65.2",
"@radix-ui/react-dialog": "^1.1.2",
"@radix-ui/react-label": "^2.1.0",
"@radix-ui/react-select": "^2.1.2",
"@radix-ui/react-slot": "^1.1.0",
"@types/node": "^22.5.4",
"browserify-zlib": "^0.2.0",
"buffer": "^6.0.3",
"class-variance-authority": "^0.7.0",
"classnames": "^2.3.2",
"clsx": "^2.1.1",
"console-browserify": "^1.2.0",
"constants-browserify": "^1.0.0",
"domain-browser": "^5.7.0",
"formik": "^2.4.3",
"http-browserify": "^1.7.0",
"lucide-react": "^0.451.0",
"path-browserify": "^1.0.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"serve": "^14.2.1",
"tailwind-merge": "^2.5.3",
"tailwindcss-animate": "^1.0.7",
"timers-browserify": "^2.0.12",
"tty-browserify": "^0.0.1",
"typescript": "^5.6.2",
"viem": "^2.21.9",
"vm-browserify": "^1.1.2",
"yup": "^1.2.0",
"zlib-browserify": "^0.0.3"
},
"devDependencies": {
"@jest/globals": "^29.7.0",
"@playwright/test": "1.46.1",
"@types/jest": "^29.5.13",
"@types/mocha": "^10.0.6",
"@types/react": "^18.2.15",
"@types/react-dom": "^18.2.7",
"@typescript-eslint/eslint-plugin": "^6.0.0",
"@typescript-eslint/parser": "^6.0.0",
"assert": "^2.1.0",
"autoprefixer": "^10.4.15",
"copy-webpack-plugin": "^11.0.0",
"crypto-browserify": "^3.12.0",
"css-loader": "^7.1.2",
"eslint": "^8.21.0",
"eslint-config-prettier": "^9.0.0",
"eslint-import-resolver-typescript": "^3.5.5",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-prettier": "^5.0.1",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-react-refresh": "^0.4.3",
"events": "^3.3.0",
"html-webpack-plugin": "^5.6.0",
"https-browserify": "^1.0.0",
"jest": "^29.7.0",
"mini-css-extract-plugin": "^2.9.1",
"os-browserify": "^0.3.0",
"postcss": "^8.4.47",
"postcss-loader": "^8.1.1",
"postcss-preset-env": "^10.0.6",
"prettier": "^3.1.1",
"process": "^0.11.10",
"react-toastify": "^10.0.4",
"resolve-typescript-plugin": "^2.0.1",
"stream-browserify": "^3.0.0",
"stream-http": "^3.2.0",
"string_decoder": "^1.3.0",
"style-loader": "^3.3.3",
"tailwindcss": "^3.4.13",
"ts-jest": "^29.2.5",
"ts-loader": "^9.5.1",
"ts-node": "^10.9.2",
"tsx": "^4.19.1",
"url": "^0.11.4",
"util": "^0.12.5",
"webpack": "^5.95.0",
"webpack-bundle-analyzer": "^4.10.2",
"webpack-cli": "^5.1.4",
"webpack-dev-server": "^4.15.1"
},
"jest": {
"testTimeout": 200000
},
"scripts": {
"clean": "rm -rf ./src/circuits/artifacts ./src/circuits/target",
"codegen": "aztec codegen ./src/circuits/target --outdir src/circuits/src/artifacts",
"compile": "cd src/circuits && ${AZTEC_NARGO:-aztec-nargo} compile && cd ../..",
"deploy": "node --loader ts-node/esm scripts/deploy.ts",
"get-block": "node --loader ts-node/esm scripts/getBlock.ts",
"test": "NODE_NO_WARNINGS=1 node --experimental-vm-modules $(yarn bin jest) --no-cache --runInBand --silent=false --config jest.integration.config.json && cd src/circuits && aztec test",
"update": "aztec update --contract ./src/circuits && ./.github/scripts/update_contract.sh $(grep -oP 'tag\\s*=\\s*\"\\K[^\"]+' \"./src/circuits/Nargo.toml\" | head -1)",
"prep": "yarn clean && yarn compile && yarn codegen",
"build:css": "tailwindcss -i ./src/globals.css -o ./dist/output.css",
"build": "webpack --mode production --config webpack.config.mjs",
"dev": "webpack serve --mode development --config webpack.config.mjs",
"serve": "webpack serve --no-open --mode development --config webpack.config.mjs",
"formatting": "prettier --check ./src && eslint ./src",
"formatting:fix": "prettier -w ./src",
"test:node": "NODE_NO_WARNINGS=1 node --experimental-vm-modules $(yarn bin jest) --runInBand",
"test:browser": "npx playwright test"
}
}