UNPKG

@sanity/cli

Version:

Sanity CLI tool for managing Sanity installations, managing plugins, schemas and datasets

24 lines (21 loc) 467 B
import {type ProjectTemplate} from '../initProject' const appTemplate: ProjectTemplate = { dependencies: { '@sanity/sdk': '^2', '@sanity/sdk-react': '^2', 'react': '^19', 'react-dom': '^19', }, devDependencies: { '@types/react': '^19', 'sanity': '^3', 'typescript': '^5.1.6', }, entry: './src/App.tsx', scripts: { dev: 'sanity dev', build: 'sanity build', start: 'sanity start', }, } export default appTemplate