-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
98 lines (98 loc) · 2.88 KB
/
package.json
File metadata and controls
98 lines (98 loc) · 2.88 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
98
{
"name": "Omega Wallet",
"version": "0.0.1",
"description": "OmegaWallet",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/Jonghakseo/chrome-extension-boilerplate-react-vite.git"
},
"scripts": {
"start": "pnpm build && ganache",
"build": "tsc --noEmit && vite build && vite build -c ./vite.config.content && vite build -c ./vite.config.inpage",
"test": "vitest",
"commitlint": "commitlint --edit",
"lint": "eslint src --ext .ts",
"lint:fix": "pnpm lint --fix",
"prettier": "prettier . --write",
"prepare": "husky install",
"ganache": "ganache"
},
"type": "module",
"dependencies": {
"@eduardoac-skimlinks/webext-redux": "3.0.1-release-candidate",
"@hookform/error-message": "^2.0.1",
"clsx": "^2.1.0",
"construct-style-sheets-polyfill": "3.1.0",
"crypto-js": "^4.2.0",
"ethers": "^6.9.1",
"immer": "^10.0.3",
"react": "18.2.0",
"react-dom": "18.2.0",
"react-hook-form": "^7.49.2",
"react-hot-toast": "^2.4.1",
"react-if": "^4.1.5",
"react-redux": "^9.0.4",
"react-router": "^6.21.1",
"react-router-dom": "^6.21.1",
"redux": "^5.0.1",
"redux-logger": "^3.0.6",
"redux-observable": "3.0.0-rc.2",
"rxjs": "^7.8.1",
"uuid": "^9.0.1",
"webextension-polyfill": "0.10.0"
},
"devDependencies": {
"@commitlint/cli": "18.2.0",
"@commitlint/config-conventional": "18.1.0",
"@nomicfoundation/hardhat-toolbox": "^4.0.0",
"@rollup/plugin-typescript": "11.1.5",
"@testing-library/react": "14.0.0",
"@types/chrome": "0.0.251",
"@types/crypto-js": "^4.2.1",
"@types/node": "20.8.10",
"@types/react": "18.2.37",
"@types/react-dom": "18.2.14",
"@types/readable-stream": "^4.0.10",
"@types/redux-logger": "^3.0.12",
"@types/uuid": "^9.0.7",
"@types/webextension-polyfill": "^0.10.7",
"@types/ws": "8.5.8",
"@typescript-eslint/eslint-plugin": "6.10.0",
"@typescript-eslint/parser": "6.9.1",
"@vitejs/plugin-react": "4.2.0",
"chokidar": "3.5.3",
"cross-env": "7.0.3",
"eslint": "8.53.0",
"eslint-config-airbnb-typescript": "17.1.0",
"eslint-config-prettier": "9.0.0",
"eslint-plugin-import": "2.29.0",
"eslint-plugin-jsx-a11y": "6.8.0",
"eslint-plugin-prettier": "5.0.1",
"eslint-plugin-react": "7.33.2",
"eslint-plugin-react-hooks": "4.6.0",
"fs-extra": "11.1.1",
"ganache": "^7.9.2",
"hardhat": "^2.19.3",
"husky": "8.0.3",
"jsdom": "^22.1.0",
"lint-staged": "15.0.2",
"npm-run-all": "4.1.5",
"prettier": "3.1.0",
"rollup": "4.3.0",
"sass": "1.69.5",
"ts-loader": "9.5.0",
"tslib": "2.6.2",
"typescript": "5.2.2",
"vite": "5.0.10",
"vitest": "^0.34.6",
"ws": "8.14.2"
},
"lint-staged": {
"*.{js,jsx,ts,tsx}": [
"prettier --write",
"eslint --fix"
]
},
"packageManager": "pnpm@8.9.2"
}