Files
SnippetsManager/package.json
T

54 lines
1.4 KiB
JSON

{
"name": "snippetsmanager",
"version": "1.0.0",
"description": "",
"main": "app.js",
"type": "module",
"scripts": {
"prettier:fix": "prettier --write ./src",
"prettier:check": "prettier --check ./src",
"build": "tsc",
"build:dev": "tsc -w",
"start": "concurrently npm:build \"wait-on dist/index.js && node dist/index.js\"",
"dev": "concurrently npm:build:dev \"wait-on dist/index.js && nodemon dist/index.js\"",
"test": "jest"
},
"author": "",
"license": "ISC",
"dependencies": {
"@prisma/client": "^5.20.0",
"bcrypt": "^5.1.1",
"concurrently": "^9.0.1",
"cookie-parser": "^1.4.6",
"cors": "^2.8.5",
"dotenv": "^16.4.5",
"express": "^4.21.0",
"jsonwebtoken": "^9.0.2",
"nodemon": "^3.1.7",
"prisma": "^5.20.0",
"swagger-jsdoc": "^6.2.8",
"swagger-ui-express": "^5.0.1",
"wait-on": "^8.0.1",
"zod": "^3.23.8"
},
"devDependencies": {
"@babel/preset-typescript": "^7.25.7",
"@types/bcrypt": "^5.0.2",
"@types/cookie-parser": "^1.4.7",
"@types/cors": "^2.8.17",
"@types/express": "^5.0.0",
"@types/jest": "^29.5.13",
"@types/jsonwebtoken": "^9.0.7",
"@types/supertest": "^6.0.2",
"@types/swagger-jsdoc": "^6.0.4",
"@types/swagger-ui-express": "^4.1.6",
"jest": "^29.7.0",
"npm": "^10.9.0",
"prettier": "^3.3.3",
"supertest": "^7.0.0",
"ts-jest": "^29.2.5",
"ts-node": "^10.9.2",
"typescript": "^5.6.2"
}
}