-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
34 lines (34 loc) · 902 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
{
"name": "hello-world-javascript-project",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"start": "node server/server.js",
"server:dev": "nodemon server/server.js",
"test": "echo \"Error: no test specified\" && exit 1",
"build": "webpack -w",
"heroku-postbuild": "webpack -p"
},
"repository": {
"type": "git",
"url": "git+https://github.com/JonLavi/geography-quiz-hello-world.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/JonLavi/geography-quiz-hello-world/issues"
},
"homepage": "https://github.com/JonLavi/geography-quiz-hello-world#readme",
"devDependencies": {
"nodemon": "^3.1.7",
"webpack": "^5.95.0",
"webpack-cli": "^5.1.4"
},
"dependencies": {
"body-parser": "^1.18.3",
"express": "^4.20.0",
"mongodb": "^3.1.13",
"node-fetch": "^2.3.0"
}
}