You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 

43 lines
1.0 KiB

{
"name": "express-ts",
"version": "1.0.0",
"main": "index.js",
"prisma": {
"seed": "ts-node prisma/seed.ts"
},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "ts-node src/index.ts",
"dev": "nodemon --watch 'src/**/*.ts' --exec 'ts-node' src/index.ts",
"build": "tsc",
"serve": "node dist/index.js"
},
"keywords": [],
"author": "",
"license": "ISC",
"description": "",
"dependencies": {
"@prisma/client": "^6.5.0",
"body-parser": "^2.1.0",
"cors": "^2.8.5",
"express": "^5.0.1",
"morgan": "^1.10.0",
"multer": "^1.4.5-lts.1",
"ramda": "^0.30.1",
"ws": "^8.18.1"
},
"devDependencies": {
"@types/body-parser": "^1.19.5",
"@types/cors": "^2.8.17",
"@types/express": "^5.0.0",
"@types/morgan": "^1.9.9",
"@types/multer": "^1.4.12",
"@types/node": "^22.13.4",
"@types/ramda": "^0.30.2",
"@types/ws": "^8.5.14",
"nodemon": "^3.1.9",
"prisma": "^6.5.0",
"ts-node": "^10.9.2",
"typescript": "^5.7.3"
}
}