├── pages └── index.js ├── package.json └── .gitignore /pages/index.js: -------------------------------------------------------------------------------- 1 | import { ContentProvider } from 'destack' 2 | import 'grapesjs/dist/css/grapes.min.css' 3 | 4 | export default function Page(props) { return } -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "destack-starter", 3 | "version": "0.7.1", 4 | "scripts": { 5 | "dev": "next", 6 | "build": "next build", 7 | "start": "next start" 8 | }, 9 | "dependencies": { 10 | "destack": "^0.11.3", 11 | "next": "latest", 12 | "react": "^17.0.1", 13 | "react-dom": "^17.0.1" 14 | }, 15 | "license": "MIT" 16 | } 17 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | # See https://help.github.com/articles/ignoring-files/ for more about ignoring files. 2 | 3 | # dependencies 4 | /node_modules 5 | /.pnp 6 | .pnp.js 7 | 8 | # testing 9 | /coverage 10 | 11 | # next.js 12 | /.next/ 13 | /out/ 14 | 15 | # production 16 | /build 17 | 18 | # misc 19 | .DS_Store 20 | *.pem 21 | 22 | # debug 23 | npm-debug.log* 24 | yarn-debug.log* 25 | yarn-error.log* 26 | 27 | # local env files 28 | .env.local 29 | .env.development.local 30 | .env.test.local 31 | .env.production.local 32 | 33 | # vercel 34 | .vercel 35 | --------------------------------------------------------------------------------