You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
43 lines
1.2 KiB
43 lines
1.2 KiB
{
|
|
"name": "flexor-api",
|
|
"description": "Flexor API server.",
|
|
"version": "1.0.3",
|
|
"private": true,
|
|
"engines": {
|
|
"node": ">=12.0.0"
|
|
},
|
|
"scripts": {
|
|
"start": "node dist/server.js",
|
|
"prestart": "npm run build",
|
|
"build": "tsc",
|
|
"watch": "run-p watch-typescript watch-server",
|
|
"watch-server": "nodemon dist/server.js",
|
|
"watch-typescript": "tsc -w"
|
|
},
|
|
"devDependencies": {
|
|
"@types/bcryptjs": "^2.4.2",
|
|
"@types/dotenv": "^8.2.0",
|
|
"@types/jsonwebtoken": "^8.3.5",
|
|
"@types/lodash": "^4.14.149",
|
|
"@types/uuid": "^3.4.6",
|
|
"nodemon": "^2.0.2",
|
|
"npm-run-all": "^4.1.5",
|
|
"pino-pretty": "^3.5.0",
|
|
"typescript": "^3.7.4"
|
|
},
|
|
"dependencies": {
|
|
"@azure/cosmos": "^3.5.2",
|
|
"@azure/storage-blob": "^12.0.1",
|
|
"bcryptjs": "^2.4.3",
|
|
"dotenv": "^8.2.0",
|
|
"fastify": "^2.11.0",
|
|
"fastify-cors": "^3.0.0",
|
|
"fastify-helmet": "^3.0.2",
|
|
"fastify-swagger": "^2.5.0",
|
|
"jsonwebtoken": "^8.5.1",
|
|
"lodash": "^4.17.15",
|
|
"moment": "^2.24.0",
|
|
"uuid": "^3.3.3",
|
|
"winston": "^3.2.1"
|
|
}
|
|
}
|