-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
48 lines (48 loc) · 1.17 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
{
"name": "notes-app-api",
"version": "1.0.0",
"description": "API which used to provide functionality to NotesApp",
"main": "app.js",
"type": "module",
"directories": {
"test": "test"
},
"scripts": {
"test": "tap \"test/**/*.test.js\"",
"start": "node app.js",
"dev": "nodemon app.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/VadyChel/NotesAppAPI.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/VadyChel/NotesAppAPI/issues"
},
"homepage": "https://github.com/VadyChel/NotesAppAPI#readme",
"dependencies": {
"@fastify/ajv-compiler": "^3.1.0",
"@fastify/auth": "^2.0.0",
"@fastify/cookie": "^6.0.0",
"@fastify/cors": "^7.0.0",
"@fastify/formbody": "^6.0.0",
"bcrypt": "^5.0.1",
"dotenv": "^16.0.1",
"fastify": "^3.0.0",
"fastify-autoload": "^3.10.0",
"fastify-plugin": "^3.0.0",
"fastify-sensible": "^3.1.2",
"jsonwebtoken": "^8.5.1",
"mongoose": "^6.3.1",
"nodemailer": "^6.7.5",
"pino-pretty": "^7.6.1",
"uuid": "^8.3.2"
},
"devDependencies": {
"nodemon": "^2.0.16",
"tap": "^15.1.6"
}
}