forked from restuwahyu13/express-mvc-pattern
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 974 Bytes
/
package.json
File metadata and controls
45 lines (45 loc) · 974 Bytes
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
42
43
44
45
{
"name": "express-mvc",
"version": "1.0.0",
"description": "example oop and mvc arcitecture express",
"main": "index.js",
"scripts": {
"start": "node .",
"dev": "nodemon server.js"
},
"repository": {
"type": "git",
"url": "restuwahyu13"
},
"keywords": [
"express",
"express-mvc",
"mvc-pattern"
],
"author": "resuwahyu13",
"license": "MIT",
"dependencies": {
"body-parser": "^1.19.0",
"dotenv": "^8.2.0",
"ejs": "^3.0.1",
"express": "^4.17.1",
"jsonwebtoken": "^8.5.1",
"module-alias": "^2.2.2",
"mongoose": "^5.9.1"
},
"devDependencies": {
"morgan": "^1.9.1",
"nodemon": "^2.0.2"
},
"_moduleAliases": {
"cores": "core/",
"configs": "configs/",
"controllers": "app/controllers/",
"helpers": "app/helpers/",
"middlewares": "app/middlewares/",
"models": "app/models/",
"routes": "app/routes",
"views": "app/views/",
"libs": "app/libs/"
}
}