-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
executable file
·87 lines (87 loc) · 2.87 KB
/
package.json
File metadata and controls
executable file
·87 lines (87 loc) · 2.87 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
{
"name": "shadowgraph-airdrop-client",
"version": "0.0.1",
"private": true,
"scripts": {
"dev": "vite dev",
"build": "vite build",
"preview": "vite preview",
"test": "yarn test:unit",
"test:unit": "vitest",
"test:e2e": "playwright test",
"test:contracts": "npx hardhat test --config hardhat.config.cjs",
"compile:contracts": "npx hardhat compile --config hardhat.config.cjs",
"deploy:contracts": "./scripts/deploy/deploy-contracts.sh",
"deploy:sepolia": "./scripts/deploy/deploy-contracts.sh sepolia",
"lint": "prettier --check . && eslint .",
"format": "prettier --write .",
"prepare": "command -v husky >/dev/null 2>&1 && husky install || echo 'Husky not available, skipping git hooks setup'",
"env:mock": "./scripts/env/generate-mock-env.sh",
"env:polygon": "./scripts/env/generate-polygon-mainnet-env.sh",
"server": "cd server && npm start",
"server:dev": "cd server && npm run dev",
"server:install": "cd server && npm install"
},
"devDependencies": {
"@nomicfoundation/hardhat-toolbox": "^6.1.0",
"@playwright/test": "^1.44.0",
"@sveltejs/adapter-auto": "^3.0.0",
"@sveltejs/kit": "^2.0.0",
"@sveltejs/vite-plugin-svelte": "^3.0.0",
"@tailwindcss/forms": "^0.5.7",
"@testing-library/svelte": "^4.1.0",
"@types/eslint": "^8.56.7",
"autoprefixer": "^10.4.19",
"eslint": "^9.0.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-svelte": "^2.36.0",
"globals": "^15.0.0",
"hardhat": "^2.26.0",
"husky": "^8.0.0",
"jsdom": "^24.0.0",
"lint-staged": "^15.2.2",
"postcss": "^8.4.38",
"prettier": "^3.2.5",
"prettier-plugin-svelte": "^3.2.3",
"svelte": "^4.2.7",
"svelte-check": "^3.6.0",
"tailwindcss": "^3.4.3",
"tslib": "^2.4.1",
"typescript": "^5.0.0",
"typescript-eslint": "^8.0.0-alpha.20",
"vite": "^5.0.3",
"vitest": "^1.5.0"
},
"dependencies": {
"@chainlink/contracts": "^1.4.0",
"@ezkljs/engine": "^7.0.0",
"@gnosis.pm/safe-ethers-lib": "^1.7.0",
"@semaphore-protocol/contracts": "^4.13.1",
"@semaphore-protocol/identity": "^4.13.1",
"@semaphore-protocol/proof": "^4.13.1",
"@sentry/sveltekit": "^10.15.0",
"@types/d3": "^7.4.3",
"@types/three": "^0.180.0",
"@web3-onboard/coinbase": "^2.2.6",
"@web3-onboard/core": "^2.24.1",
"@web3-onboard/injected-wallets": "^2.11.3",
"@web3-onboard/walletconnect": "^2.6.2",
"chart.js": "^4.5.0",
"chartjs-adapter-date-fns": "^3.0.0",
"d3": "^7.9.0",
"dotenv": "^17.2.1",
"ethers": "^6.15.0",
"ethersjs": "^0.0.1-security",
"graphql": "^16.11.0",
"graphql-request": "^7.2.0",
"lucide-svelte": "^0.378.0",
"three": "^0.180.0",
"viem": "^2.36.0",
"web3": "^4.16.0",
"zod": "^3.23.8"
},
"type": "module",
"lint-staged": {
"*.{js,ts,svelte,css,md}": "prettier --write"
}
}