-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
38 lines (38 loc) · 977 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
36
37
38
{
"name": "northone-todo-server",
"version": "1.0.0",
"description": "A Server API created for NorthOne",
"main": "server.js",
"directories": {
"test": "test"
},
"scripts": {
"start": "node server.js",
"dev-start": "./node_modules/.bin/nodemon server.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/mohammadfarooqi/northone-todo-server.git"
},
"author": "Mohammad Farooqi",
"license": "ISC",
"bugs": {
"url": "https://github.com/mohammadfarooqi/northone-todo-server/issues"
},
"homepage": "https://github.com/mohammadfarooqi/northone-todo-server#readme",
"dependencies": {
"body-parser": "^1.18.2",
"celebrate": "^7.0.4",
"dotenv": "^5.0.0",
"express": "^4.16.2",
"moment": "^2.20.1",
"mongoose": "^5.0.3",
"morgan": "^1.9.0",
"node-cron": "^1.2.1",
"request": "^2.83.0",
"request-promise": "^4.2.2"
},
"devDependencies": {
"nodemon": "^1.14.12"
}
}