-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
43 lines (43 loc) · 1.11 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
{
"name": "echo_cbt_server",
"version": "1.0.0",
"description": "Backend server for the Echo CBT app",
"main": "app.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "node app.js",
"dev": "nodemon -r dotenv/config app.js",
"lint": "eslint ."
},
"repository": {
"type": "git",
"url": "git+https://github.com/sarthakpranesh/Echo_CBT_Server.git"
},
"keywords": [
"Echo",
"CBT"
],
"author": "Sarthak Pranesh",
"license": "ISC",
"bugs": {
"url": "https://github.com/sarthakpranesh/Echo_CBT_Server/issues"
},
"homepage": "https://github.com/sarthakpranesh/Echo_CBT_Server#readme",
"dependencies": {
"body-parser": "^1.19.0",
"chalk": "^4.1.0",
"express": "^4.17.1",
"mongoose": "^5.9.20",
"node-fetch": "^2.6.1",
"nodemailer": "^6.4.11"
},
"devDependencies": {
"dotenv": "^8.2.0",
"eslint": "^7.3.1",
"eslint-config-standard": "^14.1.1",
"eslint-plugin-import": "^2.22.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-standard": "^4.0.1"
}
}