spl-token-wallet/package.json

101 lines
2.7 KiB
JSON

{
"name": "spl-token-wallet",
"version": "0.1.0",
"private": true,
"dependencies": {
"@bonfida/spl-name-service": "^0.1.24",
"@ledgerhq/hw-transport-webhid": "^5.51.1",
"@material-ui/core": "^4.11.4",
"@material-ui/icons": "^4.11.2",
"@material-ui/lab": "^4.0.0-alpha.58",
"@project-serum/anchor": "^0.7.0",
"@project-serum/serum": "^0.13.33",
"@project-serum/swap-ui": "^0.2.4",
"@project-serum/token": "^0.0.1-alpha.3",
"@solana/spl-token-registry": "^0.2.102",
"@solana/web3.js": "^1.17.0",
"@testing-library/jest-dom": "^5.11.6",
"@testing-library/react": "^11.2.2",
"@testing-library/user-event": "^12.6.0",
"@types/bn.js": "^4.11.6",
"@types/jest": "^26.0.14",
"@types/node": "^14.11.4",
"@types/react": "^17.0.0",
"@types/react-dom": "^17.0.0",
"bip32": "^2.0.5",
"bip39": "^3.0.3",
"bn.js": "^5.1.2",
"bs58": "^4.0.1",
"buffer-layout": "^1.2.0",
"ed25519-hd-key": "^1.2.0",
"immutable-tuple": "^0.4.10",
"material-ui-popup-state": "^1.8.3",
"mdi-material-ui": "^6.21.0",
"notistack": "^1.0.2",
"qrcode.react": "^1.0.0",
"react": "^17.0.1",
"react-async-hook": "^3.6.2",
"react-copy-to-clipboard": "^5.0.3",
"react-dom": "^17.0.1",
"react-scripts": "4.0.1",
"tweetnacl": "^1.0.3",
"typescript": "4.1.3",
"web3": "^1.2.11"
},
"scripts": {
"predeploy": "git pull --ff-only && yarn && yarn build",
"deploy": "gh-pages -d build",
"fix": "run-s fix:*",
"fix:prettier": "prettier \"src/**/*.js\" \"extension/src/*.js\" --write",
"start": "react-scripts start",
"build": "react-scripts build",
"build:extension": "yarn build && cp -a ./build/. ./extension/build/ && yarn build:extension-scripts",
"build:extension-scripts": "cp -a ./extension/src/. ./extension/build/.",
"test": "react-scripts test",
"eject": "react-scripts eject"
},
"eslintConfig": {
"env": {
"browser": true,
"es6": true,
"webextensions": true
},
"extends": [
"react-app"
]
},
"jest": {
"transformIgnorePatterns": [
"^.+\\.cjs$"
]
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"prettier": {
"singleQuote": true,
"trailingComma": "all"
},
"husky": {
"hooks": {
"pre-commit": "git-format-staged -f 'prettier --stdin-filepath \"{}\"' src/*.js"
}
},
"devDependencies": {
"@types/react-copy-to-clipboard": "^5.0.1",
"gh-pages": "^3.1.0",
"git-format-staged": "^2.1.0",
"husky": "^4.3.6",
"prettier": "^2.2.1"
}
}