Toggle navigation
Toggle navigation
This project
Loading...
Sign in
박민정
/
We-Shop
Go to a project
Toggle navigation
Toggle navigation pinning
Projects
Groups
Snippets
Help
Project
Activity
Repository
Pipelines
Graphs
Issues
0
Merge Requests
0
Snippets
Network
Create a new issue
Builds
Commits
Issue Boards
Authored by
박민정
2021-06-04 17:23:50 +0900
Browse Files
Options
Browse Files
Download
Email Patches
Plain Diff
Commit
5c22bcc56103d3ad84ea0a63220e5be176959bc0
5c22bcc5
1 parent
146ee0c3
[feat] Implement to launch client and server at a time using Concurrently
Expand all
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
5 additions
and
3 deletions
boiler-plate/server/package-lock.json → boiler-plate/package-lock.json
boiler-plate/server/package.json → boiler-plate/package.json
boiler-plate/
server/
package-lock.json
→
boiler-plate/package-lock.json
View file @
5c22bcc
This diff is collapsed. Click to expand it.
boiler-plate/
server/
package.json
→
boiler-plate/package.json
View file @
5c22bcc
...
...
@@ -4,15 +4,17 @@
"description"
:
""
,
"main"
:
"index.js"
,
"scripts"
:
{
"start"
:
"node index.js"
,
"backend"
:
"nodemon index.js"
,
"test"
:
"echo
\"
Error: no test specified
\"
&& exit 1"
"start"
:
"node server/index.js"
,
"backend"
:
"nodemon server/index.js"
,
"test"
:
"echo
\"
Error: no test specified
\"
&& exit 1"
,
"dev"
:
"concurrently
\"
npm run backend
\"
\"
npm run start --prefix client
\"
"
},
"author"
:
"mindyeoi"
,
"license"
:
"ISC"
,
"dependencies"
:
{
"bcrypt"
:
"^5.0.1"
,
"body-parser"
:
"^1.19.0"
,
"concurrently"
:
"^6.2.0"
,
"cookie-parser"
:
"^1.4.5"
,
"express"
:
"^4.17.1"
,
"jsonwebtoken"
:
"^8.5.1"
,
...
...
Please
register
or
login
to post a comment