Initial commit

This commit is contained in:
Florian Sylvain
2023-01-26 11:40:09 +01:00
commit 8ee68a488e
11 changed files with 7784 additions and 0 deletions
+28
View File
@@ -0,0 +1,28 @@
{
"name": "snippetsmanager",
"version": "1.0.0",
"description": "",
"main": "app.js",
"scripts": {
"build": "tsc",
"build:dev": "tsc -w",
"start": "concurrently npm:build \"wait-on dist/app.js && node dist/app.js\"",
"dev": "concurrently npm:build:dev \"wait-on dist/app.js && nodemon dist/app.js\""
},
"author": "",
"license": "ISC",
"dependencies": {
"concurrently": "^7.6.0",
"express": "^4.18.2",
"nodemon": "^2.0.20",
"prisma": "^4.9.0",
"wait-on": "^7.0.1"
},
"devDependencies": {
"@babel/preset-typescript": "^7.18.6",
"install": "^0.13.0",
"jest": "^29.4.0",
"npm": "^9.4.0",
"typescript": "^4.9.4"
}
}