forked from AustinMahan/Yelp-clone
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
46 lines (45 loc) · 1.04 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
{
"name": "update-me",
"version": "0.0.0",
"private": true,
"scripts": {
"start": "node ./src/server/server",
"test": "./node_modules/mocha/bin/_mocha"
},
"dependencies": {
"bcrypt": "^0.8.7",
"body-parser": "~1.15.1",
"connect-flash": "^0.1.1",
"cookie-parser": "~1.4.3",
"cookie-session": "^2.0.0-alpha.1",
"debug": "~2.2.0",
"dotenv": "^2.0.0",
"express": "~4.13.4",
"express-session": "^1.14.0",
"faker": "^3.1.0",
"knex": "^0.11.10",
"morgan": "~1.7.0",
"nunjucks": "^2.4.2",
"nunjucks-date-filter": "^0.1.1",
"pg": "6.1.0"
},
"devDependencies": {
"chai": "^3.5.0",
"chai-http": "^3.0.0",
"gulp-jscs": "^4.0.0",
"gulp-jshint": "^2.0.1",
"gulp-nodemon": "^2.1.0",
"gulp-notify": "^2.2.0",
"gulp-plumber": "^1.1.0",
"jshint": "^2.9.3",
"jshint-stylish": "^2.2.1",
"mocha": "^3.0.2",
"mocha-jscs": "^5.0.1",
"mocha-jshint": "^2.3.1",
"run-sequence": "^1.2.2",
"tiny-lr": "^0.2.1"
},
"engines":{
"node":"6.x"
}
}