-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
51 lines (51 loc) · 1.45 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
{
"name": "@antongunov/frontend-boilerplate",
"version": "0.0.1",
"description": "Frontend boilerplate for prototyping web pages using Gulp, PostCSS, Pug and SASS",
"private": true,
"author": {
"name": "Anton Gunov",
"email": "[email protected]"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/antongunov/frontend-boilerplate.git"
},
"bugs": {
"url": "https://github.com/antongunov/frontend-boilerplate/issues"
},
"scripts": {
"build": "NODE_ENV=production gulp build",
"dev": "NODE_ENV=development gulp dev",
"start": "npm run build && static build --indexFile home.html"
},
"devDependencies": {
"autoprefixer": "^7.1.2",
"babel-core": "^6.26.0",
"babel-preset-env": "^1.6.0",
"browser-sync": "^2.18.12",
"cssnano": "^3.10.0",
"del": "^3.0.0",
"dotenv": "^5.0.0",
"eslint": "^4.16.0",
"eslint-config-airbnb-base": "^12.1.0",
"eslint-plugin-import": "^2.7.0",
"gulp": "github:gulpjs/gulp#4.0",
"gulp-babel": "^7.0.0",
"gulp-concat": "^2.6.1",
"gulp-debug": "^3.1.0",
"gulp-if": "^2.0.2",
"gulp-load-plugins": "^1.5.0",
"gulp-newer": "^1.3.0",
"gulp-plumber": "^1.1.0",
"gulp-postcss": "^7.0.0",
"gulp-pug": "^3.3.0",
"gulp-sass": "^3.1.0",
"gulp-sourcemaps": "^2.6.1",
"gulp-uglify": "^3.0.0",
"node-static": "^0.7.10",
"postcss-font-magician": "^2.0.0",
"postcss-normalize": "^4.0.0"
}
}