add express and sqlite

This commit is contained in:
Sukchan Lee 2017-05-14 18:14:47 +09:00
parent 1123f39239
commit 9296b10384
5 changed files with 332 additions and 20 deletions

View file

@ -7,13 +7,16 @@
"author": "NextEPC Group",
"license": "GPL-3.0",
"dependencies": {
"express": "^4.15.2",
"next": "^2.3.1",
"react": "^15.5.4",
"react-dom": "^15.5.4"
"react-dom": "^15.5.4",
"sequelize": "^3.30.4",
"sqlite3": "^3.1.8"
},
"scripts": {
"dev": "next",
"dev": "node server.js",
"build": "next build",
"start": "next start"
"start": "NODE_ENV=production node server.js"
}
}