-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
111 lines (111 loc) · 3.56 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
{
"name": "voting-app",
"version": "0.1.0",
"description": "Freedomtool Voting App",
"author": "Zero Block Global Foundation",
"license": "MIT",
"private": true,
"type": "module",
"keywords": [],
"repository": {
"type": "git"
},
"gitHooks": {
"pre-commit": "yarn lint",
"pre-push": "yarn rsc"
},
"scripts": {
"vite-dev-server": "vite",
"vite-build": "vite build",
"start": "dotenv -e .env.local yarn vite-dev-server",
"build": "dotenv -e .env.production yarn vite-build",
"analyze": "dotenv -e .env.analyze yarn vite-build",
"lint": "yarn lint:scripts",
"lint:scripts": "eslint \"{src,config}/**/*.{js,ts,jsx,tsx}\" --cache --fix --max-warnings=0",
"preview": "vite preview",
"rsc": "node scripts/release-sanity-check.mjs",
"generate:ether-types": "typechain --target=ethers-v5 'abis/**/*.json' --out-dir src/types/contracts"
},
"dependencies": {
"@distributedlab/fetcher": "^1.0.0-rc.15",
"@distributedlab/jac": "^1.0.0-rc.15",
"@distributedlab/tools": "^1.0.0-rc.15",
"@distributedlab/w3p": "^1.0.0-rc.15",
"@dnd-kit/core": "^6.1.0",
"@dnd-kit/modifiers": "^7.0.0",
"@dnd-kit/sortable": "^8.0.0",
"@emotion/react": "^11.11.1",
"@emotion/styled": "^11.11.0",
"@hookform/resolvers": "^3.3.2",
"@iden3/js-crypto": "^1.0.3",
"@iden3/js-iden3-core": "^1.2.1",
"@iden3/js-jsonld-merklization": "^1.1.2",
"@iden3/js-jwz": "^1.2.1",
"@iden3/js-merkletree": "^1.1.2",
"@mui/icons-material": "^5.14.19",
"@mui/material": "^5.14.20",
"@mui/x-date-pickers": "^6.18.7",
"copy-to-clipboard": "^3.3.3",
"ejc": "^1.0.4",
"ethers": "5.7.2",
"i18next": "^22.4.3",
"jdenticon": "^3.2.0",
"lodash": "^4.17.21",
"loglevel": "^1.8.1",
"markdown-to-jsx": "^7.4.5",
"material-ui-popup-state": "^5.0.10",
"mui-markdown": "^1.1.13",
"notistack": "^3.0.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-hook-form": "^7.48.2",
"react-i18next": "^12.1.1",
"react-qr-code": "^2.0.12",
"react-router-dom": "^6.20.1",
"react-use": "^17.4.2",
"snarkjs": "^0.7.3",
"util": "^0.12.5",
"uuid": "^9.0.1",
"valtio": "^1.12.1",
"yup": "^1.3.2"
},
"devDependencies": {
"@esbuild-plugins/node-globals-polyfill": "^0.2.3",
"@esbuild-plugins/node-modules-polyfill": "^0.2.2",
"@typechain/ethers-v5": "^11.1.2",
"@types/lodash": "^4",
"@types/react": "^18.2.37",
"@types/react-dom": "^18.2.15",
"@types/snarkjs": "^0.7.8",
"@types/uuid": "^9.0.8",
"@typescript-eslint/eslint-plugin": "^6.10.0",
"@typescript-eslint/parser": "^6.10.0",
"@vitejs/plugin-react-swc": "^3.5.0",
"dotenv": "^16.3.1",
"dotenv-cli": "^7.2.1",
"esbuild": "^0.19.8",
"eslint": "^8.43.0",
"eslint-config-prettier": "^8.5.0",
"eslint-import-resolver-typescript": "^3.4.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-jsx-a11y": "^6.6.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-react": "^7.30.1",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-react-i18n": "^1.0.3",
"eslint-plugin-simple-import-sort": "^10.0.0",
"postcss": "^8.4.24",
"prettier": "^2.7.1",
"rollup-plugin-visualizer": "^5.9.2",
"typechain": "^8.3.2",
"typescript": "^5.4.3",
"vite": "^4.5.3",
"vite-plugin-checker": "^0.6.4",
"vite-plugin-html": "^3.2.0",
"vite-plugin-node-polyfills": "^0.9.0",
"vite-plugin-svg-icons": "^2.0.1",
"vite-tsconfig-paths": "^4.0.3",
"yorkie": "^2.0.0"
},
"packageManager": "[email protected]"
}