forked from worldcoin/simulator
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
85 lines (85 loc) · 2.85 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
{
"name": "simulator",
"version": "2.0.0",
"private": true,
"engines": {
"node": "18"
},
"scripts": {
"dev": "next dev",
"build": "rm -rf public/workbox-* && next build && workbox injectManifest workbox-config.cjs",
"start": "next start",
"lint": "next lint && prettier --check src/**",
"format": "next lint --fix && prettier --write src/**",
"typecheck": "tsc --noEmit --emitDeclarationOnly false --declaration false",
"spellcheck": "cspell **/*.{md,ts,tsx}",
"prepare": "husky install",
"prebuild": "node -e \"const fs = require('fs'); const pkg = require('./package.json'); fs.writeFileSync('./public/version.json', JSON.stringify({ version: pkg.version }));\""
},
"dependencies": {
"@radix-ui/react-checkbox": "^1.0.3",
"@radix-ui/react-dialog": "^1.0.3",
"@radix-ui/react-dropdown-menu": "^2.0.4",
"@radix-ui/react-radio-group": "^1.1.2",
"@semaphore-protocol/group": "3.9.0",
"@semaphore-protocol/identity": "3.9.0",
"@semaphore-protocol/proof": "3.9.0",
"@walletconnect/core": "^2.7.7",
"@walletconnect/utils": "^2.7.0",
"@walletconnect/web3wallet": "^1.7.5",
"@worldcoin/idkit": "^0.4.9",
"@zk-kit/incremental-merkle-tree": "^1.0.0",
"@zk-kit/protocols": "^1.11.1",
"clsx": "^1.2.1",
"connectkit": "^1.4.0",
"dayjs": "^1.11.7",
"framer-motion": "^10.12.18",
"jsqr": "^1.4.0",
"next": "^14.0.3",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-dropzone": "^14.2.3",
"react-hot-toast": "^2.4.1",
"snarkjs": "^0.7.2",
"tailwind-merge": "^1.13.2",
"usehooks-ts": "^2.9.1",
"viem": "^0.3.37",
"wagmi": "^1.0.8",
"zustand": "^4.3.9"
},
"devDependencies": {
"@next/bundle-analyzer": "^13.4.4",
"@types/node": "18.15.13",
"@types/react": "18.0.37",
"@types/react-dom": "18.0.11",
"@types/snarkjs": "^0.7.7",
"@typescript-eslint/eslint-plugin": "^5.59.0",
"@walletconnect/types": "^2.7.7",
"autoprefixer": "10.4.16",
"cspell": "^6.8.0",
"eslint": "8.38.0",
"eslint-config-next": "14.0.3",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-jsx-a11y": "^6.7.1",
"eslint-plugin-react": "^7.32.2",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-tailwindcss": "^3.6.0",
"husky": "^8.0.3",
"postcss": "8.4.32",
"prettier": "^2.7.1",
"prettier-plugin-organize-attributes": "^0.0.5",
"prettier-plugin-organize-imports": "^2.3.4",
"prettier-plugin-tailwindcss": "0.1.10",
"tailwindcss": "3.3.1",
"typescript": "5.0.4",
"workbox-cli": "^6.5.4",
"workbox-expiration": "^7.0.0",
"workbox-precaching": "^7.0.0",
"workbox-routing": "^7.0.0",
"workbox-strategies": "^7.0.0"
},
"lint-staged": {
"src/**/*.{js,jsx,ts,tsx}": "eslint --cache --fix",
"src/**/*.{js,jsx,ts,tsx,css,md}": "prettier --write --ignore-unknown"
}
}