-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
49 lines (49 loc) · 1.4 KB
/
package.json
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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
{
"name": "listx",
"version": "v1.1.0",
"private": false,
"scripts": {
"start": "if (pgrep 'mongod' >/dev/null 2>&1);then node bin/www;fi",
"prestart": "if (pgrep 'mongod' >/dev/null 2>&1); then echo 'MongoDB already running'; else sudo mongod --dbpath=/var/data --port=27070 --fork --logpath=./mongo/log.txt;fi",
"pretest": "if (pgrep 'mongod' >/dev/null 2>&1); then echo 'MongoDB already running'; else sudo mongod --dbpath=/var/data --port=27070 --fork --logpath=./mongo/log.txt;fi",
"test": "jest"
},
"dependencies": {
"bcryptjs": "^2.4.3",
"bluebird": "^3.5.1",
"body-parser": "^1.18.3",
"client-sessions": "^0.7.0",
"cloudinary": "^1.11.0",
"cookie-parser": "~1.4.3",
"debug": "~2.6.0",
"ejs": "~2.5.5",
"express": "^4.16.3",
"i18n": "^0.8.3",
"jsonwebtoken": "^8.2.0",
"mailgun-js": "^0.18.0",
"method-override": "~2.3.8",
"mongoose": "~4.9.4",
"morgan": "^1.9.0",
"promise": "^8.0.1",
"recaptcha2": "^1.3.2",
"request": "^2.87.0",
"serve-favicon": "^2.5.0",
"sha512": "0.0.1",
"zip-folder": "^1.0.0"
},
"description": "ListX - Shopping Lists on another level",
"main": "bin/www",
"devDependencies": {
"jest": "^22.2.2"
},
"repository": {
"type": "git",
"url": "git+https://github.com/lucakiebel/ListX.git"
},
"keywords": [
"Lists",
"Shopping",
"Express",
"mongoDB"
]
}