-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 1.15 KB
/
Copy pathpackage.json
File metadata and controls
43 lines (43 loc) · 1.15 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
{
"name": "yearbook-backend",
"version": "1.1.0",
"description": "Backend Application of the Yearbook Project written using Expressjs",
"main": "index.js",
"dependencies": {
"@hapi/joi": "^17.1.1",
"bcryptjs": "^2.4.3",
"config": "^3.3.1",
"cors": "^2.8.5",
"debug": "^4.1.1",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"express-async-errors": "^3.1.1",
"express-fileupload": "^1.1.7-alpha.3",
"imgbb-uploader": "^1.0.3",
"joi-objectid": "^3.0.1",
"jsonwebtoken": "^8.5.1",
"lodash": "^4.17.15",
"mongoose": "^5.9.11",
"mongoose-type-url": "^2.0.0",
"morgan": "^1.10.0",
"winston": "^3.2.1"
},
"devDependencies": {
"concurrently": "^5.2.0",
"eslint": "^6.8.0",
"eslint-config-airbnb-base": "^14.1.0",
"eslint-plugin-import": "^2.20.2"
},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "node index.js",
"dev": "export NODE_ENV=development DEBUG=app:* && npx nodemon",
"add-admin": "cd routes/admin && node superAdmin.js"
},
"engines": {
"node": "12.14.1"
},
"keywords": [],
"author": "Raghav Sharma",
"license": "ISC"
}