47 lines
1.1 KiB
JSON
47 lines
1.1 KiB
JSON
{
|
|
"name": "nubian",
|
|
"version": "1.0.0",
|
|
"description": "Express backend for Khufu",
|
|
"main": "src/index.js",
|
|
"scripts": {
|
|
"start": "node src/index.js --no-warnings",
|
|
"start:dev": "nodemon src/index.js",
|
|
"build": "npm run build:all",
|
|
"build:all": "docker-compose build"
|
|
},
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "git+https://gitlab.com/Dunemask/nubian.git"
|
|
},
|
|
"author": "Dunemask",
|
|
"license": "LGPL-2.1",
|
|
"bugs": {
|
|
"url": "https://gitlab.com/Dunemask/nubian"
|
|
},
|
|
"homepage": "https://gitlab.com/Dunemask/nubian#readme",
|
|
"dependencies": {
|
|
"axios": "^0.21.1",
|
|
"body-parser": "^1.19.0",
|
|
"express": "^4.17.1",
|
|
"express-bearer-token": "^2.4.0",
|
|
"mongoose": "^5.13.3",
|
|
"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": {
|
|
"CAIRO_URL": "http://localhost:52000",
|
|
"KHUFU_UPLOAD_PATH": "uploads/"
|
|
}
|
|
}
|
|
}
|