This commit is contained in:
2024-06-01 23:21:29 +02:00
commit 500147aac7
7 changed files with 324 additions and 0 deletions

30
package.json Normal file
View File

@ -0,0 +1,30 @@
{
"name": "dvf",
"version": "1.0.0",
"description": "",
"repository": {
"type": "git",
"url": "ssh://git@gitea.raphaelpiccolo.com:10022/root/dvf.git"
},
"license": "ISC",
"author": "Raphael Piccolo",
"type": "module",
"main": "server.js",
"scripts": {
"build": "gulp",
"cov": "c8 npm run test",
"jest": "SILENT=1 node --no-warnings --experimental-vm-modules ./node_modules/.bin/jest",
"prepare": "husky",
"start": "node server.js",
"test": "SILENT=1 mocha --timeout 60000 {lib,test}/**/*.test.js",
"watch": "gulp watch"
},
"dependencies": {
"moment": "^2.30.1",
"mysql2": "^3.10.0",
"csv-parse": "^5.5.6"
},
"engines": {
"node": ">=21.0.0"
}
}