-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
executable file
·39 lines (39 loc) · 1.09 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
{
"name": "frontend-boilerplate",
"version": "1.0.0",
"description": "A simple boilerplate to start the frontend of projects using gulp and Bootstrap 3 Edit",
"main": "index.js",
"scripts": {
"start": "npm install && gulp build",
"dev": "gulp dev",
"build": "gulp build",
"server": "gulp server",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "https://github.com/dorianneto/frontend-boilerplate"
},
"author": "Dorian Neto <doriansampaioneto@gmail.com> (http://dorianneto.com.br/)",
"license": "MIT",
"devDependencies": {
"browser-sync": "^2.18.13",
"gulp": "^3.8.11",
"gulp-concat": "^2.5.2",
"gulp-file-include": "^0.8.0",
"gulp-htmlmin": "^2.0.0",
"gulp-image": "^4.1.0",
"gulp-inject": "^4.3.0",
"gulp-less": "^3.0.2",
"gulp-minify-css": "^1.0.0",
"gulp-rename": "^1.2.2",
"gulp-sourcemaps": "^2.6.1",
"gulp-uglify": "^1.1.0",
"stream-series": "^0.1.1"
},
"dependencies": {
"bootstrap": "^3.3.7",
"font-awesome": "^4.7.0",
"jquery": "^3.2.1"
}
}