Skip to content

Commit

Permalink
Initial Commit.
Browse files Browse the repository at this point in the history
  • Loading branch information
bhvngt committed Apr 26, 2022
1 parent 7c6f39f commit 0f5a472
Show file tree
Hide file tree
Showing 11 changed files with 550 additions and 44 deletions.
39 changes: 37 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,38 @@
# better-babylonjs-playground-1rrivh
# create-svelte

[Edit on StackBlitz ⚡️](https://stackblitz.com/edit/better-babylonjs-playground-1rrivh)
Everything you need to build a Svelte project, powered by [`create-svelte`](https://github.com/sveltejs/kit/tree/master/packages/create-svelte).

## Creating a project

If you're seeing this, you've probably already done this step. Congrats!

```bash
# create a new project in the current directory
npm init svelte

# create a new project in my-app
npm init svelte my-app
```

## Developing

Once you've created a project and installed dependencies with `npm install` (or `pnpm install` or `yarn`), start a development server:

```bash
npm run dev

# or start the server and open the app in a new browser tab
npm run dev -- --open
```

## Building

To create a production version of your app:

```bash
npm run build
```

You can preview the production build with `npm run preview`.

> To deploy your app, you may need to install an [adapter](https://kit.svelte.dev/docs/adapters) for your target environment.
53 changes: 43 additions & 10 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,13 +1,46 @@
{
"name": "better-babylonjs-playground",
"version": "0.0.0",
"private": true,
"type": "module",
"name": "babylonjs-playground",
"version": "0.0.1",
"scripts": {
"dev": "svelte-kit dev",
"build": "svelte-kit build",
"package": "svelte-kit package",
"preview": "svelte-kit preview",
"prepare": "svelte-kit sync",
"check": "svelte-check --tsconfig ./tsconfig.json",
"check:watch": "svelte-check --tsconfig ./tsconfig.json --watch",
"lint": "prettier --ignore-path .gitignore --check --plugin-search-dir=. . && eslint --ignore-path .gitignore .",
"format": "prettier --ignore-path .gitignore --write --plugin-search-dir=. ."
},
"dependencies": {
"@babylonjs/core": "^5.3.0",
"@babylonjs/gui": "5.3.0",
"@babylonjs/loaders": "5.3.0",
"@babylonjs/materials": "5.3.0",
"babylonjs-loaders": "5.3.0"
}
}
"@babylonjs/gui": "^5.3.0",
"@babylonjs/loaders": "^5.3.0",
"@babylonjs/materials": "^5.3.0",
"babylonjs-loaders": "^5.3.0",
"lodash-es": "^4.17.21"
},
"devDependencies": {
"@sveltejs/adapter-auto": "next",
"@sveltejs/kit": "next",
"@types/lodash-es": "^4.17.6",
"@typescript-eslint/eslint-plugin": "^5.10.1",
"@typescript-eslint/parser": "^5.10.1",
"eslint": "^7.32.0",
"vite": "^2.9.5",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-svelte3": "^3.2.1",
"prettier": "^2.5.1",
"prettier-plugin-svelte": "^2.5.0",
"svelte": "^3.44.0",
"svelte-check": "^2.2.6",
"svelte-preprocess": "^4.10.1",
"tslib": "^2.3.1",
"typescript": "~4.6.2",
"unocss": "^0.31.5",
"@unocss/reset": "^0.31.5",
"@unocss/transformer-directives": "^0.31.5",
"@unocss/transformer-variant-group": "^0.31.5"
},
"type": "module"
}
Loading

0 comments on commit 0f5a472

Please sign in to comment.