-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 1.33 KB
/
package.json
File metadata and controls
45 lines (45 loc) · 1.33 KB
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
{
"name": "task-app-rest-api",
"version": "1.0.0",
"description": "A simple task-rest 😎 API where the users can create, update, delete task with basic JWT to authenticate and authorize requests.",
"main": "index.js",
"scripts": {
"start": "nodemon src/server/server.js",
"eslint": "node_modules/.bin/eslint",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/saratkumar17mss040/Task-app-rest-api.git"
},
"keywords": [
"rest-api",
"api",
"task-app-rest-api",
"task-app",
"crud"
],
"author": "sarath",
"license": "MIT",
"bugs": {
"url": "https://github.com/saratkumar17mss040/Task-app-rest-api/issues"
},
"homepage": "https://github.com/saratkumar17mss040/Task-app-rest-api#readme",
"devDependencies": {
"dotenv": "^8.2.0",
"eslint": "^7.17.0",
"nodemon": "^2.0.7",
"prettier": "^2.2.1"
},
"dependencies": {
"@hapi/hapi": "^20.0.3",
"@hapi/inert": "^6.0.3",
"@hapi/vision": "^6.0.1",
"aws-sdk": "^2.831.0",
"hapi-auth-jwt2": "^10.2.0",
"hapi-swagger": "^14.1.0",
"joi": "^17.3.0",
"jsonwebtoken": "^8.5.1",
"uuid": "^8.3.2"
}
}