CoolFace
Apppublic

Re7Pntx/c.ai-V2

sourceHugging Faceupdated 3y agoView on Hugging Face
0likes
package.json22 linesDownload Raw Back to root
1{2  "name": "template-node-python-express",3  "version": "1.0.0",4  "description": "A minimalist Docker Space to help people getting started with Node, Express and TypeScript",5  "main": "src/index.js",6  "scripts": {7    "start": "node src/index.js",8    "docker": "npm run docker:build && npm run docker:run",9    "docker:build": "docker build -t template-node-python-express .",10    "docker:run": "docker run -it -p 7860:7860 template-node-python-express"11  },12  "author": "Julian Bilcke <julian.bilcke@huggingface.co>",13  "license": "Apache License",14  "dependencies": {15    "express": "^4.18.2",16    "express-rate-limit": "^6.9.0",17    "morgan": "^1.10.0",18    "node_characterai": "^1.1.9",19    "puppeteer": "^21.0.3"20  }21}22