-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathpackage.json
More file actions
68 lines (68 loc) · 1.84 KB
/
Copy pathpackage.json
File metadata and controls
68 lines (68 loc) · 1.84 KB
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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
{
"name": "technical-blog",
"version": "1.0.0",
"description": "Blogging platform for software engineers",
"main": "server/server.js",
"directories": {
"test": "tests"
},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "node server/server.js",
"postinstall": "bower update && bower install && gulp clean && gulp build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/BlaseBallerina/tog.git"
},
"author": "Ben Steinberg, Chris Clayman, Michael Arnold, Sat Khalsa",
"license": "ISC",
"bugs": {
"url": "https://github.com/BlaseBallerina/tog/issues"
},
"homepage": "https://github.com/BlaseBallerina/tog/tog#readme",
"devDependencies": {
"browser-sync": "^2.7.13",
"chai": "^3.0.0",
"cheerio": "^0.19.0",
"mocha": "^2.2.5",
"protractor": "^2.1.0",
"sinon": "^1.15.4"
},
"dependencies": {
"bcrypt": "^0.8.4",
"bluebird": "^2.9.33",
"body-parser": "^1.13.2",
"bookshelf": "^0.8.1",
"bower": "^1.4.1",
"del": "^1.2.0",
"eslint": "^0.24.0",
"express": "^4.13.1",
"express-session": "^1.11.3",
"front-matter": "^1.0.0",
"fuzzyset.js": "0.0.1",
"gulp": "^3.9.0",
"gulp-autoprefixer": "^2.3.1",
"gulp-concat": "^2.6.0",
"gulp-eslint": "^0.15.0",
"gulp-imagemin": "^2.3.0",
"gulp-jade": "^1.0.1",
"gulp-minify-css": "^1.2.0",
"gulp-mocha": "^2.1.2",
"gulp-ng-annotate": "^1.0.0",
"gulp-nodemon": "^2.0.3",
"gulp-protractor": "^1.0.0",
"gulp-sass": "^2.0.3",
"gulp-sourcemaps": "^1.5.2",
"gulp-uglify": "^1.2.0",
"gulp-usemin": "^0.3.11",
"jwt-simple": "^0.3.0",
"knex": "^0.8.6",
"morgan": "^1.6.1",
"mysql": "^2.7.0",
"passport": "^0.2.2",
"passport-github2": "^0.1.9",
"request": "^2.60.0",
"request-promise": "^0.4.2"
}
}