mirror of
https://github.com/Floriansylvain/SnippetsManager.git
synced 2026-08-19 11:43:15 +02:00
54 lines
1.4 KiB
JSON
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": "^4.10.1",
|
|
"bcrypt": "^5.1.0",
|
|
"concurrently": "^7.6.0",
|
|
"cookie-parser": "^1.4.6",
|
|
"cors": "^2.8.5",
|
|
"dotenv": "^16.0.3",
|
|
"express": "^4.18.2",
|
|
"jsonwebtoken": "^9.0.0",
|
|
"nodemon": "^2.0.20",
|
|
"prisma": "^4.10.1",
|
|
"swagger-jsdoc": "^6.2.8",
|
|
"swagger-ui-express": "^4.6.1",
|
|
"wait-on": "^7.0.1",
|
|
"zod": "^3.20.2"
|
|
},
|
|
"devDependencies": {
|
|
"@babel/preset-typescript": "^7.18.6",
|
|
"@types/bcrypt": "^5.0.0",
|
|
"@types/cookie-parser": "^1.4.3",
|
|
"@types/cors": "^2.8.13",
|
|
"@types/express": "^4.17.16",
|
|
"@types/jest": "^29.4.0",
|
|
"@types/jsonwebtoken": "^9.0.1",
|
|
"@types/supertest": "^2.0.12",
|
|
"@types/swagger-jsdoc": "^6.0.1",
|
|
"@types/swagger-ui-express": "^4.1.3",
|
|
"jest": "^29.4.1",
|
|
"npm": "^9.4.0",
|
|
"prettier": "^2.8.4",
|
|
"supertest": "^6.3.3",
|
|
"ts-jest": "^29.0.5",
|
|
"ts-node": "^10.9.1",
|
|
"typescript": "^4.9.4"
|
|
}
|
|
}
|