Linance / package.json
ka1kuk's picture
Update package.json
37cffe6
raw
history blame
No virus
598 Bytes
{
"name": "backend",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"start": "node --loader ts-node/esm src/index.mts",
"docker": "npm run docker:build && npm run docker:run",
"docker:build": "docker build -t template-node-express .",
"docker:run": "docker run -it -p 7860:7860 template-node-express"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"cors": "^2.8.5",
"express": "^4.18.2",
"nodemon": "^3.0.1",
"yahoo-finance": "^0.3.8",
"yahoo-finance2": "^2.8.1",
"ts-node": "^10.9.1"
}
}