-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
35 lines (35 loc) · 1006 Bytes
/
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
{
"name": "palindrome_app",
"version": "1.0.0",
"main": "server.js",
"scripts": {
"test": "mocha",
"start": "node server.js"
},
"author": "shyju kozhisseri",
"license": "ISC",
"dependencies": {
"aws-sdk": "^2.282.1",
"body-parser": "^1.18.3",
"express": "^4.16.3",
"mocha": "^5.2.0",
"mongodb": "^3.1.1",
"mongoose": "^5.2.4",
"npm": "^6.2.0"
},
"devDependencies": {
"chai": "^4.1.2"
},
"description": "A simple rest API service where users can get, post and delete messages. The messages received will be checked for palindrome and stored in the local database. Currently running on AWS: http://ec2-52-15-160-169.us-east-2.compute.amazonaws.com:3000/",
"directories": {
"test": "test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/skozh/Palindrome_App.git"
},
"bugs": {
"url": "https://github.com/skozh/Palindrome_App/issues"
},
"homepage": "https://github.com/skozh/Palindrome_App#readme"
}