This repository was archived by the owner on Aug 19, 2025. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
executable file
·97 lines (97 loc) · 2.98 KB
/
package.json
File metadata and controls
executable file
·97 lines (97 loc) · 2.98 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
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
{
"name": "cyql",
"version": "0.1.0",
"description": "",
"keywords": [
"Internet Computer",
"Motoko",
"JavaScript",
"Canister"
],
"scripts": {
"dev": "vite",
"build": "vite build",
"deploy": "DFX_WARNING=-mainnet_plaintext_identity dfx deploy --network=ic",
"start:clean": "dfx start --clean",
"status:assets": "dfx canister --network=ic status assets",
"cycles": "chmod +x src/scripts/check-cycles.sh && ./src/scripts/check-cycles.sh"
},
"devDependencies": {
"@types/node": "^24.0.10",
"@types/react-copy-to-clipboard": "^5.0.7",
"buffer": "^6.0.3",
"prettier": "^3.6.2",
"prettier-plugin-tailwindcss": "^0.6.13",
"process": "0.11.10",
"tw-animate-css": "^1.3.5",
"typescript": "^4.3.5",
"vite": "^7.0.2",
"vite-plugin-svgr": "^4.3.0"
},
"browserslist": [
"last 2 chrome version",
"last 2 firefox version",
"last 2 safari version",
"last 2 edge version"
],
"dependencies": {
"@babel/helpers": "^7.27.6",
"@babel/runtime": "^7.27.6",
"@dfinity/agent": "^2.4.1",
"@dfinity/auth-client": "^2.4.1",
"@dfinity/candid": "^2.4.1",
"@dfinity/identity": "^2.4.1",
"@dfinity/ledger-icp": "^3.0.0",
"@dfinity/nns-proto": "^2.0.2",
"@dfinity/principal": "^2.4.1",
"@dfinity/utils": "^2.13.1",
"@fortawesome/fontawesome-svg-core": "^6.2.1",
"@fortawesome/free-brands-svg-icons": "^6.2.1",
"@fortawesome/free-solid-svg-icons": "^6.2.1",
"@fortawesome/react-fontawesome": "^0.2.0",
"@radix-ui/react-collapsible": "^1.1.11",
"@radix-ui/react-dialog": "^1.1.14",
"@radix-ui/react-dropdown-menu": "^2.1.15",
"@radix-ui/react-select": "^2.2.5",
"@radix-ui/react-slot": "^1.2.3",
"@reduxjs/toolkit": "^2.2.5",
"@tailwindcss/vite": "^4.1.11",
"@tanstack/react-query": "^5.82.0",
"@tanstack/react-query-devtools": "^5.82.0",
"@types/react-dom": "^18.2.7",
"@types/react-router-dom": "^5.3.3",
"@types/styled-components": "^5.1.26",
"@vitejs/plugin-react": "^4.0.4",
"@vitejs/plugin-react-refresh": "^1.3.6",
"chart.js": "^4.5.0",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"compressorjs": "^1.2.1",
"cropperjs": "^1.6.2",
"dotenv": "^16.3.1",
"esbuild": "^0.25.5",
"lucide-react": "^0.525.0",
"nanoid": "^3.3.11",
"react": "^18.3.1",
"react-confetti-explosion": "^2.1.2",
"react-cookie-consent": "^7.3.1",
"react-copy-to-clipboard": "^5.1.0",
"react-cropper": "^2.3.3",
"react-dom": "^18.3.1",
"react-hot-toast": "^2.4.1",
"react-icons": "^5.5.0",
"react-image-size": "^2.3.2",
"react-paginate": "^8.2.0",
"react-redux": "^9.1.2",
"react-router-dom": "^6.30.1",
"react-share": "^4.4.1",
"redux": "^5.0.1",
"rollup": "^3.29.5",
"string-to-color": "^2.2.2",
"styled-components": "^5.3.11",
"tailwind-merge": "^3.3.1",
"tailwindcss": "^4.1.11",
"usehooks-ts": "^2.14.0",
"vite-plugin-environment": "^1.1.3"
}
}