Added startup command to npm and added cross-env and reverted back to sqlite

This commit is contained in:
Kevin Midboe
2017-04-12 22:14:26 +02:00
parent daab2bee28
commit 2a66ab7b9a

View File

@@ -1,10 +1,14 @@
{
"name": "node-api",
"main": "server.js",
"main": "src/webserver/server.js",
"scripts": {
"start": "cross-env SEASONED_CONFIG=conf/development.json NODE_PATH=. node src/webserver/server.js"
},
"dependencies": {
"express": "~4.0.0",
"mongoose": "~3.6.13",
"body-parser": "~1.0.1",
"sqlite3": "~3.1.8"
"cross-env": "^3.1.3",
"sqlite": "^2.5.0"
}
}