create-dynamic-app
Version:
CLI tool to generate sample applications using Dynamic's web3 authentication
30 lines (25 loc) • 742 B
text/typescript
export const DEFAULT_ENVIRONMENT_ID = "2762a57b-faa4-41ce-9f16-abff9300e2c9"
export const ENV_FILE_TEMPLATE = `# Dynamic Labs Environment Variables
VITE_DYNAMIC_ENVIRONMENT_ID=${DEFAULT_ENVIRONMENT_ID}
# Add any other environment variables your app needs below
`
export const DEPENDENCY_VERSIONS = {
dynamicSdk: "^4",
react: "^18",
reactDom: "^18",
viem: "^2.28.0",
dynamicEthers: "^4.12.4",
ethers: "^6",
wagmi: "^2.15.0",
tanstackQuery: "^5.74.4",
vite: "^5.1.4",
typescript: "^5.0.4",
vitejsPluginReact: "^4.4.1",
eslint: "^9.25.1",
eslintPluginReactHooks: "^5.2.0",
eslintPluginReactRefresh: "^0.4.20",
nodePolyfills: "^0.19.0",
}
export const GIT_CONFIG = {
commitMessage: "Initial commit from create dynamic app",
}