-
Notifications
You must be signed in to change notification settings - Fork 152
/
package.json
67 lines (67 loc) · 1.85 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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
{
"name": "angularjs-boilerplate",
"version": "1.3.0",
"license": "MIT",
"description": "Simple AngularJS Boilerplate to kick start your new project with SASS support and Gulp watch/build tasks",
"main": "app/app.js",
"devDependencies": {
"browser-sync": "^1.9.1",
"connect": "^3.3.1",
"connect-livereload": "^0.5.0",
"del": "^1.1.1",
"gulp": "^3.8.10",
"gulp-angular-templatecache": "^1.6.0",
"gulp-autoprefixer": "^2.1.0",
"gulp-changed": "^1.1.1",
"gulp-concat": "^2.4.3",
"gulp-filter": "^2.0.0",
"gulp-html-replace": "^1.4.4",
"gulp-load-plugins": "^0.10.0",
"gulp-minify-css": "^1.2.4",
"gulp-minify-html": "^0.1.8",
"gulp-notify": "^2.1.0",
"gulp-rename": "^1.2.0",
"gulp-rev": "^3.0.1",
"gulp-size": "^1.2.0",
"gulp-sourcemaps": "^1.3.0",
"gulp-uglify": "^1.1.0",
"gulp-uncss": "^1.0.0",
"gulp-usemin": "^0.3.11",
"opn": "^1.0.0",
"run-sequence": "^1.0.2",
"serve-index": "^1.5.0",
"serve-static": "^1.7.1",
"tiny-lr": "^0.1.4",
"watch": "^0.13.0"
},
"scripts": {
"start": "gulp",
"build": "gulp build",
"server": "gulp server",
"serverbuild": "gulp server-build",
"postinstall": "npm install gulp-sass gulp-imagemin --save&&bower install --no-interactive"
},
"repository": {
"type": "git",
"url": "https://github.com/jbutko/AngularJS-Boilerplate.git"
},
"keywords": [
"angular",
"angularjs",
"boilerplate",
"front-end",
"app",
"single-page",
"spa"
],
"author": "Jozef Butko",
"docs": "https://github.com/jbutko/AngularJS-Boilerplate/blob/master/README.md",
"bugs": {
"url": "https://github.com/jbutko/AngularJS-Boilerplate/issues"
},
"homepage": "https://github.com/jbutko/AngularJS-Boilerplate",
"dependencies": {
"gulp-imagemin": "^3.2.0",
"gulp-sass": "^3.1.0"
}
}