-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
36 lines (36 loc) · 883 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
32
33
34
35
36
{
"name": "ada-capstone",
"version": "0.0.0",
"private": true,
"scripts": {
"start": "node ./bin/www",
"test": "mocha --recursive",
"seed": "node seed.js",
"db_from_config": "mongod --config ./db/etc/mongod.conf",
"db": "mongod --dbpath ./db/",
"dev_db": "mongod --dbpath ./db",
"dev_start": "nodemon ./bin/www"
},
"dependencies": {
"async": "^1.4.2",
"body-parser": "~1.13.2",
"cheerio": "latest",
"cookie-parser": "~1.3.5",
"debug": "~2.2.0",
"dotenv": "^1.2.0",
"express": "~4.13.1",
"he": "^0.5.0",
"jade": "~1.11.0",
"mocha": "^2.3.3",
"mongodb": "^2.0.45",
"mongoose": "^4.1.10",
"morgan": "~1.6.1",
"nodemon": "^1.7.1",
"request": "latest",
"serve-favicon": "~2.3.0",
"should": "^7.1.1",
"sleep": "^3.0.0",
"supertest": "^1.1.0",
"xml2js": "^0.4.13"
}
}