Toggle navigation
Toggle navigation
This project
Loading...
Sign in
zuzitsu
/
UR_Village
Go to a project
Toggle navigation
Toggle navigation pinning
Projects
Groups
Snippets
Help
Project
Activity
Repository
Pipelines
Graphs
Issues
0
Merge Requests
0
Wiki
Snippets
Network
Create a new issue
Builds
Commits
Issue Boards
Authored by
Suyeon Jung
2020-11-28 19:54:20 +0900
Browse Files
Options
Browse Files
Download
Email Patches
Plain Diff
Commit
562c7884a8c75d203f4a5c791a260ff2d8102059
562c7884
1 parent
8eb4e1ef
Update package.json
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
6 additions
and
3 deletions
package.json
routes/index.js
package.json
View file @
562c788
...
...
@@ -3,7 +3,7 @@
"version"
:
"0.0.0"
,
"private"
:
true
,
"scripts"
:
{
"start"
:
"node
./bin/www"
"start"
:
"nodemon
./bin/www"
},
"dependencies"
:
{
"cookie-parser"
:
"~1.4.4"
,
...
...
@@ -11,6 +11,10 @@
"express"
:
"~4.16.1"
,
"http-errors"
:
"~1.6.3"
,
"morgan"
:
"~1.9.1"
,
"pug"
:
"2.0.0-beta11"
"nodemon"
:
"^2.0.6"
,
"pug"
:
"2.0.0-beta11"
,
"request"
:
"^2.88.2"
,
"xhr"
:
"^2.5.0"
,
"xmlhttprequest"
:
"^1.8.0"
}
}
...
...
routes/index.js
View file @
562c788
...
...
@@ -5,5 +5,4 @@ var router = express.Router();
router
.
get
(
'/'
,
function
(
req
,
res
,
next
)
{
res
.
render
(
'index'
,
{
title
:
'Express'
});
});
module
.
exports
=
router
;
\ No newline at end of file
...
...
Please
register
or
login
to post a comment