overseer/package.json

50 lines
1.2 KiB
JSON
Raw Normal View History

{
"name": "overseer",
2022-11-04 17:59:25 -04:00
"version": "0.1.2",
"description": "Self-hosted inventory tracker",
"main": "index.js",
"scripts": {
2022-11-01 23:55:07 -04:00
"start": "node index.js",
2022-11-04 09:07:31 -04:00
"grunt": "grunt",
"nodemon": "nodemon index.js",
"lint": "eslint index.js src/**/*.js",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "gitea@git.metaunix.net:BitGoblin/overseer.git"
},
"keywords": [
"inventory",
"tracking"
],
"author": "Gregory Ballanine <gballantine@bitgoblin.tech>",
2022-11-04 09:07:31 -04:00
"uploaders": [
{
"name": "Gregory Ballantine",
"email": "gballantine@bitgoblin.tech"
}
2022-11-04 09:07:31 -04:00
],
"license": "BSD-2-Clause",
"devDependencies": {
"eslint": "^8.26.0",
"eslint-config-google": "^0.14.0",
2022-11-04 09:07:31 -04:00
"grunt": "^1.5.3",
"grunt-cli": "^1.4.3",
2022-11-04 17:53:42 -04:00
"grunt-contrib-sass": "^2.0.0",
"grunt-contrib-uglify": "^5.2.2",
"grunt-contrib-watch": "^1.1.0",
2022-11-04 09:07:31 -04:00
"grunt-deb": "^0.2.5",
"nodemon": "^2.0.20",
"sass": "^1.55.0"
2022-11-01 22:00:38 -04:00
},
"dependencies": {
"config": "^3.3.8",
2022-11-01 22:00:38 -04:00
"express": "^4.18.2",
"express-session": "^1.17.3",
2022-11-02 13:45:40 -04:00
"sequelize": "^6.25.3",
"sqlite3": "^5.1.2",
2022-11-01 22:00:38 -04:00
"twig": "^1.15.4"
}
}