forked from zkopru-network/zkopru-extension
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
96 lines (96 loc) · 3.41 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
{
"name": "zkopru-extension",
"version": "0.1.0",
"private": true,
"license": "MIT",
"scripts": {
"dev:chromium": "npm run build && npm-run-all -p build:watch \"web-ext:chromium -- --chromium-profile {1}\" --",
"dev:firefox": "npm run build && npm-run-all -p build:watch web-ext:firefox",
"build": "node scripts/build.mjs",
"build:watch": "chokidar \"src/**\" -c \"npm run build -- --manifest false\"",
"web-ext:chromium": "web-ext run --target chromium --source-dir ./build/chromium --start-url zkopru.network",
"web-ext:firefox": "web-ext run --source-dir ./build/firefox --start-url http://localhost:3000",
"clean": "rm -rf build && rm -rf web-ext-artifacts",
"lint": "eslint --ext js,jsx,ts,tsx src && tsc --noEmit",
"lint:fix": "eslint --fix --ext js,jsx,ts,tsx src",
"storybook": "start-storybook -p 6006",
"build-storybook": "build-storybook",
"svgs": "svgr -d './src/ui/components/common/icons' './src/assets/in-app-icons' --typescript"
},
"devDependencies": {
"@babel/core": "^7.18.5",
"@linaria/esbuild": "^3.0.0-beta.15",
"@storybook/addon-a11y": "^6.5.9",
"@storybook/addon-actions": "^6.5.9",
"@storybook/addon-essentials": "^6.5.9",
"@storybook/addon-interactions": "^6.5.9",
"@storybook/addon-links": "^6.5.9",
"@storybook/addon-postcss": "^2.0.0",
"@storybook/builder-webpack5": "^6.5.9",
"@storybook/manager-webpack5": "^6.5.9",
"@storybook/react": "^6.5.9",
"@storybook/testing-library": "^0.0.13",
"@tailwindcss/forms": "^0.5.2",
"@types/bn.js": "^5.1.0",
"@types/download": "8.0.1",
"@types/node": "^17.0.35",
"@types/react": "^18.0.9",
"@types/react-dom": "^18.0.4",
"@types/webextension-polyfill": "^0.8.3",
"@types/yargs": "^17.0.10",
"@typescript-eslint/eslint-plugin": "^5.25.0",
"@typescript-eslint/parser": "^5.25.0",
"autoprefixer": "^10.4.7",
"babel-loader": "^8.2.5",
"body-parser": "1.19.1",
"chokidar-cli": "^3.0.0",
"download": "8.0.0",
"esbuild": "^0.14.39",
"eslint": "^8.15.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-react": "^7.30.0",
"eslint-plugin-storybook": "^0.5.13",
"express": "4.17.2",
"npm-run-all": "^4.1.5",
"postcss": "^8.4.14",
"prettier": "^2.6.2",
"require-from-string": "^2.0.2",
"safe-compare": "1.1.4",
"storybook-addon-themes": "^6.1.0",
"tailwindcss": "^3.1.4",
"typescript": "^4.6.4",
"web-ext": "^6.8.0",
"webextension-polyfill": "^0.9.0",
"webpack": "^5.72.1"
},
"dependencies": {
"@ethersproject/units": "^5.6.1",
"@headlessui/react": "^1.6.6",
"@hookform/error-message": "^2.0.0",
"@hookform/resolvers": "^2.9.7",
"@linaria/babel-preset": "^3.0.0-beta.15",
"@linaria/core": "^3.0.0-beta.15",
"@linaria/react": "^3.0.0-beta.15",
"@linaria/shaker": "^3.0.0-beta.15",
"@svgr/cli": "^6.3.0",
"@zkopru/client": "^2.0.0-beta.8",
"bn.js": "^5.2.1",
"clsx": "^1.1.1",
"dayjs": "^1.11.3",
"fs-extra": "^10.1.0",
"i18next": "^21.8.10",
"js-sha512": "^0.8.0",
"loglevel": "^1.8.0",
"react": "^18.1.0",
"react-dom": "^18.1.0",
"react-hook-form": "^7.33.1",
"react-hot-toast": "^2.4.0",
"react-i18next": "^11.17.2",
"react-query": "^3.39.1",
"react-router-dom": "^6.3.0",
"yargs": "^17.5.1",
"zod": "^3.18.0",
"zustand": "^4.0.0-rc.1"
}
}