Version 0.1.0 - Ajout du serveur Express

This commit is contained in:
Raphix
2023-10-21 18:16:11 +02:00
parent f3ecace914
commit 99f0392a6c
11 changed files with 1915 additions and 0 deletions

32
package.json Normal file
View File

@ -0,0 +1,32 @@
{
"name": "neutral",
"version": "0.1.0",
"description": "Panel d'administration de Raphix",
"main": "index.js",
"scripts": {
"start": "nodemon ./bin/www"
},
"repository": {
"type": "git",
"url": "https://git.raphix.fr/infrastructure/neutral.git"
},
"nodemonConfig": {
"ext": "js, html",
"ignore": [
"*.json"
],
"delay": "10000000"
},
"keywords": [],
"dependencies": {
"cookie-parser": "~1.4.4",
"debug": "~2.6.9",
"ejs": "~2.6.1",
"express": "~4.16.1",
"http-errors": "~1.6.3",
"loguix": "^1.2.0",
"nodemon": "^3.0.1"
},
"author": "Raphix",
"license": "ISC"
}