-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
73 lines (73 loc) · 2.25 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
{
"name": "@saifuwallet/saifu-plugin-marinade",
"version": "1.0.0-beta1",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"repository": "[email protected]:saifuwallet/saifu-plugin-marinade.git",
"license": "AGPL",
"dependencies": {
"@marinade.finance/marinade-ts-sdk": "^3.1.0"
},
"resolutions": {
"axios": "^0.21.1"
},
"publishConfig": {
"registry": "https://npm.pkg.github.com"
},
"devDependencies": {
"@heroicons/react": "^1.0.5",
"@rollup/plugin-babel": "^5.3.1",
"@rollup/plugin-commonjs": "^15.1.0",
"@rollup/plugin-json": "^4.1.0",
"@rollup/plugin-node-resolve": "^13.1.3",
"@rollup/plugin-replace": "^4.0.0",
"@rollup/plugin-typescript": "^6.0.0",
"@types/node": "^14.14.2",
"@types/numeral": "^2.0.2",
"@types/react": "^17.0.39",
"@typescript-eslint/eslint-plugin": "^5.15.0",
"@typescript-eslint/parser": "^5.15.0",
"autoprefixer": "^10.4.2",
"buffer": "^6.0.3",
"clsx": "^1.1.1",
"eslint": "^8.11.0",
"eslint-config-prettier": "^8.5.0",
"eslint-import-resolver-typescript": "^2.5.0",
"eslint-plugin-import": "^2.25.4",
"eslint-plugin-jest-dom": "^4.0.1",
"eslint-plugin-jsx-a11y": "^6.5.1",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-react": "^7.29.4",
"eslint-plugin-react-hooks": "^4.3.0",
"eslint-plugin-testing-library": "^5.1.0",
"numeral": "^2.0.6",
"postcss": "^8.4.7",
"prettier": "^2.2.1",
"react-icons": "^4.3.1",
"rollup": "^2.68.0",
"rollup-plugin-copy": "^3.4.0",
"rollup-plugin-node-builtins": "^2.1.2",
"rollup-plugin-node-globals": "^1.4.0",
"rollup-plugin-node-polyfills": "^0.2.1",
"rollup-plugin-polyfill-node": "^0.8.0",
"rollup-plugin-postcss": "^4.0.2",
"saifu": "github:saifuwallet/saifu-api#earn-api",
"tailwindcss": "^3.0.23",
"tslib": "^2.0.3",
"typescript": "^4.5.5"
},
"files": [
"dist"
],
"scripts": {
"dev": "rollup --config rollup.config.js -w",
"build": "NODE_ENV=production rollup --config rollup.config.js",
"lint": "eslint --fix --ext .js,.ts,.tsx ./src --ignore-path .gitignore",
"check-types": "tsc --project tsconfig.json --pretty --noEmit"
},
"browserslist": [
">0.2%",
"not dead",
"not op_mini all"
]
}