Inception

This commit is contained in:
Hakan Shehu
2024-07-29 09:13:36 +02:00
commit 76994d2ef9
23 changed files with 12235 additions and 0 deletions

24
server/package.json Normal file
View File

@@ -0,0 +1,24 @@
{
"name": "neuron-server",
"version": "1.0.0",
"main": "src/index.ts",
"scripts": {
"build": "tsc",
"start": "node dist/index.js",
"dev": "nodemon --watch src --exec ts-node src/index.ts"
},
"keywords": [],
"author": "",
"license": "ISC",
"description": "",
"devDependencies": {
"@types/express": "^4.17.21",
"@types/node": "^22.0.0",
"nodemon": "^3.1.4",
"ts-node": "^10.9.2",
"typescript": "^5.5.4"
},
"dependencies": {
"express": "^4.19.2"
}
}