first commit

This commit is contained in:
Mathieu Bruyen
2022-05-02 15:12:06 +02:00
commit 4ddc04d017
23 changed files with 3849 additions and 0 deletions

22
package.json Normal file
View File

@@ -0,0 +1,22 @@
{
"name": "svg-editor",
"private": true,
"version": "0.0.0",
"scripts": {
"dev": "vite --host --port 4173",
"build": "tsc && vite build",
"preview": "vite preview"
},
"dependencies": {
"react": "^18.0.0",
"react-dom": "^18.0.0",
"uuid": "^8.3.2"
},
"devDependencies": {
"@types/react": "^18.0.0",
"@types/react-dom": "^18.0.0",
"@vitejs/plugin-react": "^1.3.0",
"typescript": "^4.6.3",
"vite": "^2.9.2"
}
}