trafficlight/package.json
2020-11-05 16:09:25 +01:00

33 lines
672 B
JSON

{
"name": "node-js-getting-started",
"version": "0.3.0",
"description": "A sample Node.js app using Express 4",
"engines": {
"node": "12.x"
},
"main": "src/server.js",
"scripts": {
"start": "node src/server.js",
"test": "node_modules/.bin/tape test/*.js"
},
"dependencies": {
"bcrypt": ">=5.0.0",
"minimist": ">=1.2.3",
"ejs": "^2.5.6",
"express": "^4.15.2"
},
"devDependencies": {
"request": "^2.81.0",
"tape": "^4.11.0"
},
"repository": {
"type": "git",
"url": "https://github.com/heroku/node-js-getting-started"
},
"keywords": [
"node",
"heroku",
"express"
],
"license": "MIT"
}