-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathpackage.json
41 lines (41 loc) · 1.11 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
33
34
35
36
37
38
39
40
41
{
"name": "nodejs-mvc",
"version": "1.0.0",
"description": "Node.js Express MVC Starter Kit",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "nodemon server.js",
"seed": "node ./models/migration/Seeder.js Seed"
},
"repository": {
"type": "git",
"url": "git+https://github.com/joanjpx/nodejs-mvc.git"
},
"keywords": ["Nodejs","Movies","Demo","MVC Based","Boilerplate"],
"author": "Joan P. Alvarado",
"license": "ISC",
"bugs": {
"url": "https://github.com/joanjpx/nodejs-mvc/issues"
},
"homepage": "https://github.com/joanjpx/nodejs-mvc#readme",
"dependencies": {
"app-root-path": "^2.2.1",
"bcryptjs": "^2.4.3",
"body-parser": "^1.19.0",
"chalk": "^2.4.2",
"cors": "^2.8.5",
"cross-env": "^5.2.0",
"dotenv": "^8.0.0",
"express": "^4.17.1",
"express-jwt": "^5.3.1",
"faker": "^4.1.0",
"jsonwebtoken": "^8.5.1",
"make-runnable": "^1.3.6",
"method-override": "^3.0.0",
"mongodb": "^3.3.0-beta2",
"mongoose": "^5.6.9",
"morgan": "^1.9.1",
"rootpath": "^0.1.2"
}
}