summaryrefslogtreecommitdiff
path: root/package.json
diff options
context:
space:
mode:
authorBakedSnake <gilferrandm@gmail.com>2021-03-17 12:58:53 +0100
committerBakedSnake <gilferrandm@gmail.com>2021-03-17 12:58:53 +0100
commit188527c6b55a2d64d5f76c5d3e094da45c69b0c9 (patch)
tree8c6c41a2ffe04af81483ec36f72d328c3c76780a /package.json
Public versionHEADmaster
Diffstat (limited to 'package.json')
-rw-r--r--package.json28
1 files changed, 28 insertions, 0 deletions
diff --git a/package.json b/package.json
new file mode 100644
index 0000000..43681b8
--- /dev/null
+++ b/package.json
@@ -0,0 +1,28 @@
+{
+ "name": "blog",
+ "version": "1.0.0",
+ "description": "A simple REST blog",
+ "main": "app.js",
+ "scripts": {
+ "test": "echo \"Error: no test specified\" && exit 1",
+ "start": "node app",
+ "dev": "nodemon app",
+ "build": "node build"
+ },
+ "author": "Gil Ferrand",
+ "license": "GPL-3.0",
+ "dependencies": {
+ "body-parser": "^1.19.0",
+ "connect-flash": "^0.1.1",
+ "ejs": "^3.1.5",
+ "express": "^4.17.1",
+ "express-sanitizer": "^1.0.5",
+ "express-session": "^1.17.1",
+ "method-override": "^3.0.0",
+ "mongoose": "^5.11.11",
+ "nodemon": "^2.0.7",
+ "passport": "^0.4.1",
+ "passport-local": "^1.0.0",
+ "passport-local-mongoose": "^6.1.0"
+ }
+}