-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
executable file
·68 lines (68 loc) · 2.47 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
68
{
"name": "hugo-boilerplate",
"version": "1.0.0",
"description": "A Hugo boilerplate for building modern websites",
"repository": "https://github.com/forestryio/hugo-boilerplate",
"author": "forestryio",
"license": "MIT",
"scripts": {
"start": "gulp server",
"preview": "cross-env NODE_ENV=production GENRATOR_ARGS=preview gulp server",
"build": "cross-env NODE_ENV=production gulp build",
"clean": "gulp clean",
"hugo": "node_modules/.bin/hugo --source hugo/",
"eslint": "./node_modules/eslint/bin/eslint.js src/js/ --ext .js",
"eslint:fix": "./node_modules/eslint/bin/eslint.js src/js/ --ext .js --fix",
"stylelint": "npm run stylelint:css && npm run stylelint:scss",
"stylelint:fix": "npm run stylelint:css --fix && npm run stylelint:scss --fix",
"stylelint:css": "./node_modules/stylelint/bin/stylelint.js src/css/**/*.css",
"stylelint:scss": "./node_modules/stylelint/bin/stylelint.js src/scss/**/*.scss"
},
"devDependencies": {
"@nuscout/prettier-config": "^0.1.2",
"babel-eslint": "^6.1.2",
"babel-loader": "^7.0.0",
"babel-plugin-syntax-object-rest-spread": "^6.13.0",
"babel-plugin-transform-class-properties": "^6.10.2",
"babel-plugin-transform-object-assign": "^6.8.0",
"babel-plugin-transform-object-rest-spread": "^6.8.0",
"babel-preset-env": "1.6.0",
"babel-register": "^6.11.6",
"browser-sync": "^2.13.0",
"compression": "^1.7.1",
"cross-env": "^5.1.1",
"css-loader": "^0.28.2",
"eslint": "^3.1.1",
"eslint-plugin-compat": "^2.1.0",
"eslint-plugin-import": "^2.8.0",
"exports-loader": "^0.6.3",
"gulp": "^3.9.1",
"gulp-babel": "^6.1.2",
"gulp-imagemin": "^4.0.0",
"gulp-newer": "^1.3.0",
"gulp-postcss": "^6.1.1",
"gulp-rename": "^1.2.2",
"gulp-sourcemaps": "^2.6.1",
"gulp-svg-sprite": "^1.3.7",
"gulp-util": "^3.0.8",
"hugo-bin": "^0.18.0",
"laggard": "^2.0.1",
"postcss-browser-reporter": "^0.5.0",
"postcss-cssnext": "^2.7.0",
"postcss-reporter": "^5.0.0",
"postcss-scss": "^1.0.2",
"precss": "^2.0.0",
"run-sequence": "^2.2.0",
"stylelint": "^8.2.0",
"stylelint-config-sass-guidelines": "^4.0.1",
"stylelint-config-standard": "^17.0.0",
"stylelint-no-unsupported-browser-features": "^1.0.1",
"stylelint-scss": "^2.2.0",
"through2": "^2.0.3",
"vinyl-named": "^1.1.0",
"webpack": "3.6.0",
"webpack-stream": "^4.0.0",
"whatwg-fetch": "^1.0.0"
},
"dependencies": {}
}