CoolFace
Apppublic

amitesh11/pose

sourceHugging Faceupdated 3y agoView on Hugging Face
0likes
package.json22 linesDownload Raw Back to web
1{2    "name": "web",3    "version": "1.0.0",4    "description": "<h2 align=\"center\">Website for Models Demonstration</h2>",5    "main": "index.js",6    "scripts": {7        "install:client": "cd ./client && npm i",8        "dev:client": "cd ./client && npm run dev",9        "build-deploy:client": "cd ./client && npm run build:deploy",10        "install:server": "pip install -r requirements.txt",11        "dev:server": "cd ./server && python manage.py runserver",12        "install:all": "npm run install:client && npm run install:server",13        "start:website": "npm run build-deploy:client && npm run dev:server"14    },15    "keywords": [],16    "author": "",17    "license": "ISC",18    "devDependencies": {19        "vitest": "^1.3.1"20    }21}22