-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
78 lines (78 loc) · 2.36 KB
/
package.json
File metadata and controls
78 lines (78 loc) · 2.36 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
74
75
76
77
78
{
"name": "@cloak/fzuck",
"packageManager": "yarn@4.5.2",
"private": true,
"version": "0.0.0",
"type": "module",
"scripts": {
"clean": "rm -rf ./dist .tsbuildinfo",
"dev": "vite",
"build": "tsc -b && vite build",
"lint": "eslint .",
"preview": "vite preview",
"formatting": "run -T prettier --check ./src && run -T eslint ./src",
"formatting:fix": "run -T eslint --fix ./src && run -T prettier -w ./src",
"test": "npx playwright test"
},
"prettier": "@aztec/foundation/prettier",
"dependencies": {
"@aztec/accounts": "1.2.1",
"@aztec/aztec.js": "1.2.1",
"@aztec/constants": "1.2.1",
"@aztec/foundation": "1.2.1",
"@aztec/kv-store": "1.2.1",
"@aztec/noir-contracts.js": "1.2.1",
"@aztec/pxe": "1.2.1",
"@aztec/stdlib": "1.2.1",
"@emotion/react": "^11.14.0",
"@emotion/styled": "^11.14.1",
"@fontsource/inter": "^5.2.5",
"@fontsource/roboto": "^5.1.1",
"@fontsource/space-grotesk": "^5.2.6",
"@mui/icons-material": "^5.0.0",
"@mui/material": "^7.3.1",
"@mui/styles": "^6.3.1",
"@reduxjs/toolkit": "^1.9.5",
"@toolpad/core": "^0.14.0",
"@types/node": "^24.3.0",
"@uidotdev/usehooks": "^2.4.1",
"assert": "^2.1.0",
"buffer-json": "^2.0.0",
"colorette": "^2.0.20",
"nosleep.js": "^0.12.0",
"os-browserify": "^0.3.0",
"path-browserify": "^1.0.1",
"process": "^0.11.10",
"react": "^18.3.1",
"react-confetti": "^6.4.0",
"react-dom": "^18.3.1",
"react-dropzone": "^14.3.5",
"react-redux": "^8.1.1",
"react-router-dom": "^7.8.2",
"stream-browserify": "^3.0.0",
"util": "^0.12.5"
},
"devDependencies": {
"@aztec/bb.js": "^1.2.1",
"@aztec/noir-acvm_js": "^1.2.1",
"@aztec/noir-noirc_abi": "^1.2.1",
"@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-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": "^6.3.2",
"vite-plugin-bundlesize": "^0.1.0",
"vite-plugin-node-polyfills": "^0.23.0",
"vite-plugin-static-copy": "^2.2.0"
}
}