-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
126 lines (126 loc) · 3.94 KB
/
package.json
File metadata and controls
126 lines (126 loc) · 3.94 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
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
{
"name": "@morphis/chrome-extension",
"version": "0.0.9.4",
"description": "Morphis - the most friendly wallet on Sui",
"engines": {
"node": ">=16.18.0"
},
"packageManager": "pnpm@8.6.9",
"scripts": {
"prepare": "husky install",
"lint": "npx eslint src --ext .js,.jsx,.ts,.tsx",
"prettier": "prettier --write src",
"start": "pnpm build:dev --watch",
"start:prod": "pnpm build:prod --watch",
"build:dev": "cross-env NODE_ENV=\"development\" TS_NODE_PROJECT=\"./configs/ts/tsconfig.webpack.json\" webpack --progress",
"build:prod": "cross-env NODE_ENV=\"production\" TS_NODE_PROJECT=\"./configs/ts/tsconfig.webpack.json\" webpack --progress",
"check-updates": "npx npm-check-updates",
"pack:zip": "web-ext build --source-dir ./dist --overwrite-dest",
"test": "vitest"
},
"repository": {
"type": "git",
"directory": "https://github.com/MorphisWallet/chrome-ext.git"
},
"keywords": [
"morphis",
"wallet",
"sui"
],
"author": "Morphis Lab<morphiswallet@gmail.com>",
"license": "Apache License, Version 2.0",
"homepage": "https://github.com/MorphisWallet/chrome-ext",
"devDependencies": {
"@commitlint/cli": "^17.6.6",
"@commitlint/config-conventional": "^17.6.6",
"@sentry/react": "^7.57.0",
"@sentry/tracing": "^7.57.0",
"@svgr/webpack": "^8.0.1",
"@types/aes-js": "^3.1.1",
"@types/dotenv-webpack": "^7.0.4",
"@types/jest": "^29.5.2",
"@types/lodash": "^4.14.195",
"@types/node": "^20.4.0",
"@types/react": "^18.2.14",
"@types/react-dom": "^18.2.6",
"@types/react-transition-group": "^4.4.6",
"@types/semver": "^7.5.0",
"@types/uuid": "^9.0.2",
"@types/webextension-polyfill": "^0.10.1",
"@types/webpack": "^5.28.1",
"@typescript-eslint/eslint-plugin": "^5.61.0",
"@typescript-eslint/parser": "^5.61.0",
"autoprefixer": "^10.4.14",
"copy-webpack-plugin": "^11.0.0",
"cross-env": "^7.0.3",
"css-loader": "^6.8.1",
"dotenv-webpack": "^8.0.1",
"eslint": "^8.44.0",
"eslint-config-prettier": "^8.8.0",
"eslint-define-config": "^1.21.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-jsonc": "^2.9.0",
"eslint-plugin-prettier": "^5.0.0",
"eslint-plugin-react": "^7.32.2",
"eslint-webpack-plugin": "^4.0.1",
"html-webpack-plugin": "^5.5.3",
"husky": "^8.0.3",
"jest": "^29.6.1",
"lint-staged": "^13.2.3",
"mini-css-extract-plugin": "^2.7.6",
"postcss-loader": "^7.3.3",
"postcss-preset-env": "^9.0.0",
"prettier": "^3.0.0",
"ts-jest": "^29.1.1",
"ts-loader": "^9.4.4",
"ts-node": "^10.9.1",
"tsconfig-paths": "^4.2.0",
"typescript": "^5.1.6",
"vitest": "^0.33.0",
"web-ext": "^7.6.2",
"webextension-polyfill": "^0.10.0",
"webpack": "^5.88.1",
"webpack-cli": "^5.1.4",
"webpack-merge": "^5.9.0"
},
"dependencies": {
"@headlessui/react": "^1.7.15",
"@metamask/browser-passworder": "^4.1.0",
"@mysten/kiosk": "^0.3.3",
"@mysten/sui.js": "^0.37.1",
"@mysten/wallet-standard": "^0.5.12",
"@noble/hashes": "^1.3.1",
"@reduxjs/toolkit": "^1.9.5",
"@scure/bip39": "^1.2.1",
"@tanstack/react-query": "^4.29.19",
"bignumber.js": "^9.1.1",
"buffer": "^6.0.3",
"classnames": "^2.3.2",
"copy-to-clipboard": "^3.3.3",
"decimal.js": "^10.4.3",
"formik": "^2.4.2",
"lodash": "^4.17.21",
"mitt": "^3.0.1",
"postcss": "^8.4.25",
"qrcode.react": "^3.1.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-intl": "^6.4.4",
"react-redux": "^8.1.1",
"react-router-dom": "^6.14.1",
"react-toastify": "^9.1.3",
"react-tooltip": "^5.18.0",
"react-transition-group": "^4.4.5",
"rxjs": "^7.8.1",
"semver": "^7.5.3",
"stream-browserify": "^3.0.0",
"swiper": "^9.4.1",
"tailwindcss": "^3.3.2",
"tweetnacl": "^1.0.3",
"uuid": "^9.0.0",
"yup": "^0.32.11"
},
"lint-staged": {
"*.{js,ts,jsx,tsx,json}": "eslint"
}
}