-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
31 lines (31 loc) · 863 Bytes
/
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
{
"author": "Milan Milanov, Viktor Staikov",
"name": "zaPOI",
"description": "Points Of Interest (POI) application built with NodeJS, Express and MongoDB",
"version": "0.0.1",
"main": "app.js",
"scripts": {
"start": "node app.js",
"test": "export NODE_ENV=test && ./node_modules/mocha/bin/mocha && ./node_modules/cucumber/bin/cucumber.js -f=pretty"
},
"dependencies": {
"mongoose": "3.8.x",
"express": "3.x",
"express-namespace": "0.1.x",
"express-form": "0.10.x",
"connect-flash": "0.1.x",
"jade": "1.1.x",
"passport": "0.1.x",
"passport-local": "0.1.x",
"passport-local-mongoose": "0.2.x",
"geocoder": "0.1.x"
},
"devDependencies": {
"zombie": "latest",
"cucumber": "latest",
"mocha": "latest",
"should": "latest",
"passport-stub": "latest",
"supertest": "latest"
}
}