-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
32 lines (32 loc) · 1.05 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
{
"name": "what-is-mvc",
"version": "1.0.0",
"description": "Understanding the concepts behind the popular design pattern of MVC will make you a more well rounded programmer. There are many frameworks across multiple languages that use MVC. To illustrate MVC, we will be using Node. We'll build an MVC express app from the ground up. The best way to learn something is to build it.",
"main": "index.js",
"scripts": {
"dev": "nodemon -V app",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/pajtai/what-is-mvc.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/pajtai/what-is-mvc/issues"
},
"homepage": "https://github.com/pajtai/what-is-mvc#readme",
"dependencies": {
"bluebird": "^3.5.0",
"body-parser": "^1.17.1",
"express": "^4.15.2",
"glob": "^7.1.1",
"mysql": "^2.13.0",
"mysql2": "^1.2.0",
"pug": "^2.0.0-rc.1",
"sequelize": "^3.30.4",
"sequelize-cli": "^2.7.0"
}
}