forked from adriflorence/bucketList
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
31 lines (31 loc) · 976 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
{
"name": "w13d4_bucketList",
"version": "1.0.0",
"description": "- Use the rest countries API to get the countries of the world. - Add countries to a bucket list. - Persist this list using Mongo. - Try to split your client code into models and views. Think about the responsibilities of each.",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "nodemon server.js",
"build": "webpack -w"
},
"repository": {
"type": "git",
"url": "git+https://github.com/adriflorence/w13d4_bucketList.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/adriflorence/w13d4_bucketList/issues"
},
"homepage": "https://github.com/adriflorence/w13d4_bucketList#readme",
"dependencies": {
"body-parser": "^1.18.3",
"express": "^4.16.3",
"mongodb": "^3.1.1"
},
"devDependencies": {
"webpack": "^4.16.5",
"webpack-cli": "^3.1.0"
}
}