aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/package.json
blob: 48ae4660d3a2c1c92e75b9289eac4ddd0409e228 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
{
    "name": "Divid"
  , "description": "A bachelorproject ending in a webapplication for social accounting"
  , "version": "0.0.2"
  , "private": true
  , "engines": {
        "node": "0.10.x"
      , "npm": "1.2.x"
    }
  , "scripts": {
        "start": "NODE_ENV=development ./node_modules/.bin/nodemon app.js"
      , "test": "NODE_ENV=test ./node_modules/.bin/mocha --reporter spec test/test-*.js"
    }
  , "dependencies": {
      "express": "latest"
    , "ejs": "latest"
    , "mongoose": "latest"
    , "connect": "latest"
    , "mongodb": "latest"
    , "less-middleware": "latest"
    , "passport": "latest"
    , "passport-local": "latest"
    , "passport-facebook": "latest"
    , "passport-twitter": "latest"
    , "bcrypt": "latest"
    , "nodemon": "latest"
    }
  , "decDependencies": {
      "mocha": "latest"
    }
}