-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
52 lines (52 loc) · 1.37 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
{
"name": "fastify-mongodb",
"version": "1.0.0",
"description": "The code represent CRUD operations in fastify with MongoDB.",
"main": "index.js",
"scripts": {
"dev": "ts-node-dev --respawn --transpile-only src/server.ts",
"format": "prettier --write ."
},
"author": "Rajneshwar Singh",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/rajneshwarsingh/Fastify-MongoDB.git"
},
"bugs": {
"url": "https://github.com/rajneshwarsingh/Fastify-MongoDB/issues"
},
"homepage": "https://github.com/rajneshwarsingh//Fastify-MongoDB#readme",
"keywords": [
"fastify",
"mongodb",
"typescript"
],
"dependencies": {
"argon2": "^0.40.3",
"bcrypt": "^5.1.1",
"cors": "^2.8.5",
"dotenv": "^16.4.5",
"fastify": "^4.28.1",
"fastify-plugin": "^4.5.1",
"helmet": "^7.1.0",
"jsonwebtoken": "^9.0.2",
"mongoose": "^8.5.2",
"nodemon": "^3.1.4",
"prettier": "^3.3.3"
},
"devDependencies": {
"@types/bcrypt": "^5.0.2",
"@typescript-eslint/eslint-plugin": "^7.3.1",
"@typescript-eslint/parser": "^7.3.1",
"eslint": "^8.57.0",
"@types/jsonwebtoken": "^9.0.6",
"@types/mongoose": "^5.11.97",
"@types/node": "^22.1.0",
"globals": "^15.9.0",
"ts-node": "^10.9.2",
"ts-node-dev": "^2.0.0",
"typescript": "^5.5.4",
"typescript-eslint": "^8.7.0"
}
}