diff --git a/package.json b/package.json index f266895..f5d9061 100644 --- a/package.json +++ b/package.json @@ -1,28 +1,29 @@ { "name": "my-needle-engine-project", "version": "1.0.0", - "type" : "module", + "type": "module", "scripts": { - "start": "vite --host", - "build": "vite build", + "dev": "vite --host", + "start": "npm run dev", + "build": "vite build -- --production", "build:dev": "vite build", - "build:production": "vite build -- --production" + "build:production": "npm run build" }, "dependencies": { - "@needle-tools/engine": "^4.4.0-beta.3", - "three": "npm:@needle-tools/three@^0.169.0", - "react": "^18.0.0", - "react-dom": "^18.0.0" - }, + "@needle-tools/engine": "^4.4.0-beta.3", + "three": "npm:@needle-tools/three@^0.169.0", + "react": "^18.0.0", + "react-dom": "^18.0.0" + }, "devDependencies": { - "@needle-tools/helper": "^1.8.0", - "@types/three": "0.162.0", - "@vitejs/plugin-basic-ssl": "^1.0.1", - "typescript": "^5.0.4", - "vite": "<= 4.3.9", - "vite-plugin-compression": "^0.5.1", - "@vitejs/plugin-react": "^1.3.0", - "ansi-styles": "^6.1.0", - "eslint-plugin-react-hooks": "^4.5.0" - } + "@needle-tools/helper": "^1.8.0", + "@types/three": "0.162.0", + "@vitejs/plugin-basic-ssl": "^1.0.1", + "typescript": "^5.0.4", + "vite": "<= 4.3.9", + "vite-plugin-compression": "^0.5.1", + "@vitejs/plugin-react": "^1.3.0", + "ansi-styles": "^6.1.0", + "eslint-plugin-react-hooks": "^4.5.0" + } }