Migrated to SASS and CoffeeScript for stylesheets and scripting

This commit is contained in:
Gregory Ballantine
2024-06-06 23:24:28 -04:00
parent facc252d3b
commit 584a6087ba
7 changed files with 1485 additions and 121 deletions

View File

@ -1,11 +1,4 @@
{
"dependencies": {
"express": "^4.18.2",
"express-session": "^1.17.3",
"sequelize": "^6.35.1",
"sqlite3": "^5.1.6",
"twig": "^1.16.0"
},
"name": "leviathan",
"description": "PC hardware benchmarking data logger",
"version": "0.1.0",
@ -13,7 +6,8 @@
"scripts": {
"start": "node index.js",
"dev": "nodemon ./index.js",
"test": "echo \"Error: no test specified\" && exit 1"
"test": "echo \"Error: no test specified\" && exit 1",
"grunt": "grunt"
},
"repository": {
"type": "git",
@ -26,7 +20,20 @@
],
"author": "Gregory Ballantine <gballantine@metaunix.net>",
"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"
},
"devDependencies": {
"nodemon": "^3.0.1"
"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"
}
}