2022-11-01 18:49:18 -04:00
|
|
|
{
|
|
|
|
"name": "overseer",
|
2022-11-09 14:34:30 -05:00
|
|
|
"version": "0.2.2",
|
2022-11-01 18:49:18 -04:00
|
|
|
"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",
|
2022-11-03 20:45:58 -04:00
|
|
|
"nodemon": "nodemon index.js",
|
2022-12-13 18:58:14 -05:00
|
|
|
"sequelize": "sequelize-cli",
|
2022-11-03 22:19:42 -04:00
|
|
|
"lint": "eslint index.js src/**/*.js",
|
2022-11-01 18:49:18 -04:00
|
|
|
"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": [
|
2022-11-04 17:30:17 -04:00
|
|
|
{
|
|
|
|
"name": "Gregory Ballantine",
|
|
|
|
"email": "gballantine@bitgoblin.tech"
|
|
|
|
}
|
2022-11-04 09:07:31 -04:00
|
|
|
],
|
2022-11-01 18:49:18 -04:00
|
|
|
"license": "BSD-2-Clause",
|
|
|
|
"devDependencies": {
|
2022-11-03 22:19:42 -04:00
|
|
|
"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",
|
2022-11-03 20:45:58 -04:00
|
|
|
"nodemon": "^2.0.20",
|
2022-11-01 18:49:18 -04:00
|
|
|
"sass": "^1.55.0"
|
2022-11-01 22:00:38 -04:00
|
|
|
},
|
|
|
|
"dependencies": {
|
2022-11-02 14:03:20 -04:00
|
|
|
"config": "^3.3.8",
|
2022-11-05 16:14:37 -04:00
|
|
|
"connect-redis": "^6.1.3",
|
2022-11-01 22:00:38 -04:00
|
|
|
"express": "^4.18.2",
|
2022-11-04 17:30:17 -04:00
|
|
|
"express-session": "^1.17.3",
|
2022-11-04 21:24:22 -04:00
|
|
|
"mariadb": "^3.0.2",
|
|
|
|
"mysql2": "^2.3.3",
|
|
|
|
"pg": "^8.8.0",
|
|
|
|
"pg-hstore": "^2.3.4",
|
2022-11-05 16:14:37 -04:00
|
|
|
"redis": "^4.4.0",
|
2022-11-02 13:45:40 -04:00
|
|
|
"sequelize": "^6.25.3",
|
2022-12-13 18:58:14 -05:00
|
|
|
"sequelize-cli": "^6.5.2",
|
2022-11-02 13:45:40 -04:00
|
|
|
"sqlite3": "^5.1.2",
|
2022-11-01 22:00:38 -04:00
|
|
|
"twig": "^1.15.4"
|
2022-11-01 18:49:18 -04:00
|
|
|
}
|
|
|
|
}
|