This repository has been archived on 2024-08-10. You can view files and clone it, but you cannot make any changes to it's state, such as pushing and creating new issues, pull requests or comments.
nubian/package.json

48 lines
1.1 KiB
JSON
Raw Normal View History

2021-07-24 15:42:36 -06:00
{
"name": "nubian",
2021-07-24 15:42:36 -06:00
"version": "1.0.0",
"description": "Express backend for Khufu",
2021-08-14 17:55:14 -06:00
"main": "src/index.js",
2021-07-24 15:42:36 -06:00
"scripts": {
2021-08-14 17:55:14 -06:00
"start": "node src/index.js --no-warnings",
"start:dev": "nodemon src/index.js",
"build": "npm run build:all",
"build:all": "docker-compose build"
2021-07-24 15:42:36 -06:00
},
"repository": {
"type": "git",
"url": "git+https://gitlab.com/Dunemask/nubian.git"
2021-07-24 15:42:36 -06:00
},
2021-08-14 17:58:22 -06:00
"author": "Dunemask",
"license": "LGPL-2.1",
2021-07-24 15:42:36 -06:00
"bugs": {
"url": "https://gitlab.com/Dunemask/nubian"
2021-07-24 15:42:36 -06:00
},
"homepage": "https://gitlab.com/Dunemask/nubian#readme",
2021-07-24 15:42:36 -06:00
"dependencies": {
"axios": "^0.21.1",
"body-parser": "^1.19.0",
"express": "^4.17.1",
"express-bearer-token": "^2.4.0",
"mongoose": "^5.13.3",
2021-07-24 15:42:36 -06:00
"multer": "^1.4.2",
"path": "^0.12.7",
"rimraf": "^3.0.2"
},
"nodemonConfig": {
"restartable": "rs",
"ignore": [
".git",
"./src/uploads/",
"./src/zips/"
],
"verbose": true,
"ext": "js,json",
"signal": "SIGINT",
"env": {
2021-08-23 21:02:12 -06:00
"CAIRO_URL": "http://localhost:52000",
"KHUFU_UPLOAD_PATH": "uploads/"
}
2021-07-24 15:42:36 -06:00
}
}