-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
99 lines (99 loc) · 3.39 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
{
"name": "@masa-finance/masa-react",
"version": "4.6.0",
"license": "MIT",
"main": "./dist/src/index.js",
"typings": "./dist/src/index.d.ts",
"files": [
"dist"
],
"engines": {
"node": ">=16"
},
"author": "hide-on-bush",
"scripts": {
"prepare": "husky install",
"clean": "rimraf ./dist",
"build": "mkdir -p dist && yarn clean && yarn transpile && cross-env NODE_ENV=production yarn build:webpack",
"transpile": "tsc",
"build:webpack": "webpack --mode production --config webpack.config.js",
"build:watch": "tsc -w",
"start": "yarn build:watch",
"storybook": "storybook dev -p 3000",
"analyze": "size-limit --why",
"size": "size-limit",
"lint": "eslint --config .eslintrc --ignore-path .eslintignore .",
"lint:fix": "eslint --config .eslintrc --fix --ignore-path .eslintignore .",
"prettier": "prettier --config ./.prettierrc --write \"**/*.{js,json,ts,tsx,yml}\"",
"prettier:check": "prettier --check --config ./.prettierrc --ignore-path .prettierignore \"**/*.{js,json,ts,tsx,yml}\"",
"test": "echo 'No Tests'",
"doc": "typedoc"
},
"dependencies": {
"@celo/rainbowkit-celo": "^1.2.0",
"@ebay/nice-modal-react": "^1.2.13",
"@ethersproject/providers": "^5.7.2",
"@masa-finance/masa-contracts-identity": "^1.15.0",
"@masa-finance/masa-sdk": "^4.7.0",
"@rainbow-me/rainbowkit": "^1.3.7",
"@storybook/addon-styling-webpack": "^1.0.0",
"@tanstack/query-sync-storage-persister": "^5.32.1",
"@tanstack/react-query": "^5.37.1",
"@tanstack/react-query-persist-client": "^5.32.1",
"@wagmi/chains": "^1.8.0",
"@wagmi/core": "^1.4.13",
"ethers": "~5.7.2",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-use": "^17.5.1",
"viem": "^1.21.4",
"wagmi": "^1.4.13"
},
"devDependencies": {
"@babel/core": "^7.25.2",
"@babel/preset-env": "^7.25.3",
"@babel/preset-react": "^7.24.7",
"@babel/preset-typescript": "^7.24.7",
"@size-limit/file": "^11.1.2",
"@size-limit/preset-big-lib": "^11.1.2",
"@size-limit/webpack": "^11.1.2",
"@size-limit/webpack-css": "^11.1.2",
"@size-limit/webpack-why": "^11.1.2",
"@storybook/addon-essentials": "^8.2.5",
"@storybook/addon-links": "^8.1.11",
"@storybook/addon-webpack5-compiler-babel": "^3.0.3",
"@storybook/react": "^8.1.11",
"@storybook/react-webpack5": "^8.2.5",
"@tanstack/eslint-plugin-query": "^5.51.15",
"@tanstack/react-query-devtools": "^5.32.1",
"@types/eslint": "^8.56.10",
"@types/node": "^22.2.0",
"@types/react": "^18.3.4",
"@typescript-eslint/eslint-plugin": "^7.17.0",
"@typescript-eslint/parser": "^7.18.0",
"babel-loader": "^9.1.3",
"cross-env": "^7.0.3",
"css-loader": "^7.1.1",
"eslint": "^8.57.0",
"eslint-config-masa": "^0.1.8",
"fork-ts-checker-webpack-plugin": "^9.0.2",
"https-browserify": "^1.0.0",
"husky": "^9.1.4",
"lint-staged": "^15.2.9",
"mini-css-extract-plugin": "^2.9.0",
"node-polyfill-webpack-plugin": "^4.0.0",
"prettier": "^3.3.3",
"react-json-view-lite": "^1.3.1",
"rimraf": "^5.0.10",
"sass": "^1.77.8",
"sass-loader": "^16.0.1",
"size-limit": "^11.1.2",
"storybook": "^8.2.5",
"typedoc": "^0.26.6",
"typedoc-plugin-markdown": "^4.2.3",
"typescript": "^5.5.3",
"webpack": "^5.94.0",
"webpack-cli": "^5.1.4",
"webpack-remove-empty-scripts": "^1.0.4"
}
}