-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
27 lines (27 loc) · 1.07 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
{
"name": "digital-agriculture-app-project",
"version": "1.0.0",
"description": "Need to develop an app that offers common functionality for digital agriculture apps (such as\r OAuth-based Single Sign-On, properties, seasons, field records, etc). The API is built on HTTP and is\r mostly RESTful: It has predictable resource URLs, returns HTTP response codes to indicate errors. It\r also accepts and returns JSON in the HTTP body.",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "npx nodemon src/index.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Raj3028/Digital-Agriculture-App-Project.git"
},
"author": "RAJESH KUMAR SAHOO",
"license": "ISC",
"bugs": {
"url": "https://github.com/Raj3028/Digital-Agriculture-App-Project/issues"
},
"homepage": "https://github.com/Raj3028/Digital-Agriculture-App-Project#readme",
"dependencies": {
"bcrypt": "^5.1.0",
"express": "^4.18.2",
"jsonwebtoken": "^8.5.1",
"mongoose": "^6.8.0",
"nodemon": "^2.0.20"
}
}