package.json 2.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071
  1. {
  2. "name": "@solana/wallet-adapter-example",
  3. "version": "0.18.9",
  4. "author": "Solana Maintainers <maintainers@solana.foundation>",
  5. "repository": "https://github.com/solana-labs/wallet-adapter",
  6. "license": "Apache-2.0",
  7. "type": "module",
  8. "sideEffects": false,
  9. "engines": {
  10. "node": ">=16"
  11. },
  12. "publishConfig": {
  13. "access": "public"
  14. },
  15. "files": [
  16. "public",
  17. "src",
  18. ".editorconfig",
  19. ".eslintrc.json",
  20. ".gitignore",
  21. ".prettierignore",
  22. ".prettierrc",
  23. "LICENSE",
  24. "next.config.js",
  25. "next-env.d.ts",
  26. "package.json",
  27. "README.md",
  28. "tsconfig.json"
  29. ],
  30. "scripts": {
  31. "clean": "shx rm -rf .next .swc lib",
  32. "dev": "NODE_OPTIONS='--inspect' next dev",
  33. "build": "next build",
  34. "start": "next start",
  35. "lint": "next lint",
  36. "export": "next export"
  37. },
  38. "dependencies": {
  39. "@ant-design/icons": "^4.0.0",
  40. "@emotion/react": "^11.10.0",
  41. "@emotion/styled": "^11.10.0",
  42. "@mui/icons-material": "^5.8.4",
  43. "@mui/material": "^5.9.3",
  44. "@solana/wallet-adapter-ant-design": "^0.11.10",
  45. "@solana/wallet-adapter-base": "^0.9.13",
  46. "@solana/wallet-adapter-material-ui": "^0.16.11",
  47. "@solana/wallet-adapter-react": "^0.15.15",
  48. "@solana/wallet-adapter-react-ui": "^0.9.13",
  49. "@solana/wallet-adapter-wallets": "^0.18.2",
  50. "@solana/web3.js": "^1.50.1",
  51. "antd": "^4.22.6",
  52. "bs58": "^4.0.1",
  53. "next": "12.2.0",
  54. "notistack": "^2.0.3",
  55. "react": "^18.0.0",
  56. "react-dom": "^18.0.0",
  57. "tweetnacl": "^1.0.3"
  58. },
  59. "devDependencies": {
  60. "@types/node-fetch": "^2.6.2",
  61. "@types/react": "^18.0.0",
  62. "@types/react-dom": "^18.0.0",
  63. "eslint": "^8.22.0",
  64. "eslint-config-next": "^12.2.5",
  65. "next-compose-plugins": "^2.2.1",
  66. "next-plugin-antd-less": "^1.8.0",
  67. "prettier": "^2.7.1",
  68. "shx": "^0.3.4",
  69. "typescript": "^4.7.4"
  70. }
  71. }