Leviathan/package.json

40 lines
942 B
JSON
Raw Permalink Normal View History

{
"name": "leviathan",
"description": "PC hardware benchmarking data logger",
"version": "0.1.0",
"main": "index.js",
"scripts": {
"start": "node index.js",
2023-11-26 01:00:16 -05:00
"dev": "nodemon ./index.js",
"test": "echo \"Error: no test specified\" && exit 1",
"grunt": "grunt"
},
"repository": {
"type": "git",
"url": "https://git.metaunix.net/BitGoblin/Leviathan"
},
"keywords": [
"pc",
"hardware",
"benchmarking"
],
"author": "Gregory Ballantine <gballantine@metaunix.net>",
2023-11-26 01:00:16 -05:00
"license": "BSD-2-Clause",
"dependencies": {
"express": "^4.18.2",
"express-session": "^1.17.3",
"sequelize": "^6.35.1",
"sqlite3": "^5.1.6",
"twig": "^1.16.0"
},
2023-11-26 01:00:16 -05:00
"devDependencies": {
"grunt": "^1.6.1",
"grunt-cli": "^1.4.3",
"grunt-contrib-coffee": "^2.1.0",
"grunt-contrib-sass": "^2.0.0",
"grunt-contrib-watch": "^1.1.0",
"nodemon": "^3.0.1",
"sass": "^1.77.4"
2023-11-26 01:00:16 -05:00
}
}