-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 1.27 KB
/
package.json
File metadata and controls
45 lines (45 loc) · 1.27 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
{
"name": "Pluralsight-Gulp",
"version": "0.1.0",
"description": "Starter Code for Pluralsight Course JavaScript Build Automation with Gulp.js",
"authors": [
"John Papa"
],
"license": "MIT",
"homepage": "https://github.com/johnpapa/pluralsight-gulp",
"repository": {
"type": "git",
"url": "https://github.com/johnpapa/pluralsight-gulp.git"
},
"scripts": {
"init": "npm install",
"install": "bower install",
"start": "node src/server/app.js"
},
"dependencies": {
"body-parser": "^1.8.2",
"compression": "^1.1.0",
"cors": "^2.2.0",
"express": "^4.9.3",
"morgan": "^1.1.1",
"serve-favicon": "^2.0.1"
},
"devDependencies": {
"browser-sync": "^2.18.13",
"gulp": "^3.9.1",
"gulp-concat": "^2.6.1",
"gulp-if": "^2.0.2",
"gulp-jsbeautifier": "^2.1.1",
"gulp-jscs": "^4.0.0",
"gulp-jshint": "^2.0.4",
"gulp-load-plugins": "^1.5.0",
"gulp-nodemon": "^2.2.1",
"gulp-print": "^2.0.1",
"gulp-rename": "^1.2.2",
"gulp-uglify": "^3.0.0",
"gulp-util": "^3.0.8",
"jshint": "^2.9.5",
"jshint-stylish": "^2.2.1",
"yargs": "^10.0.3"
}
}