-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
91 lines (91 loc) · 3.04 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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
{
"name": "gravity-metalsmith-seed",
"version": "1.0.1",
"description": "An \"opinionated minimum\" set of features to generate metalsmith sites with gravity.",
"main": "index.js",
"scripts": {
"clean": "gulp clean",
"build": "gulp build",
"build-min": "gulp build --env local-dev-min",
"build-staging": "gulp build --env staging",
"build-prod": "gulp build --env production",
"dev": "gulp",
"start": "gulp --env local-dev-min",
"cypress": "cypress run",
"pa11y": "./node_modules/.bin/pa11y-ci --sitemap http://localhost:8080/sitemap.xml",
"test": "npm run cypress && npm run pa11y",
"eslint": "eslint 'src/scripts/**/*.js'",
"stylelint": "stylelint 'src/sass/**/*.scss'",
"lint": "npm run eslint && npm run stylelint",
"http-server": "http-server ./dist -c-1 -s &",
"ci": "npm run build-min && npm run lint && npm run test"
},
"author": "Buildit | Wipro Digital (https://buildit.wiprodigital.com)",
"contributors": [
"Daniel Wilkinson <daniel.wilkinson@wipro.com>"
],
"repository": {
"type": "git",
"url": "git+https://github.com/dw-buildit/gravity-metalsmith-seed.git"
},
"license": "ISC",
"engines": {
"node": ">= 10",
"npm": ">= 6"
},
"devDependencies": {
"@babel/preset-env": "^7.9.0",
"@buildit/gravity-ui-web": "^3.0.0",
"browser-sync": "^2.26.7",
"chalk": "^3.0.0",
"critical": "^1.3.9",
"cypress": "^4.2.0",
"del": "^5.1.0",
"eslint": "^6.8.0",
"eslint-config-prettier": "^6.10.1",
"eslint-plugin-prettier": "^3.1.2",
"eyeglass": "^2.5.0",
"git-last-commit": "^1.0.0",
"gulp": "^4.0.2",
"gulp-autoprefixer": "^7.0.1",
"gulp-csso": "^4.0.1",
"gulp-filter": "^6.0.0",
"gulp-front-matter": "^1.3.0",
"gulp-header": "^2.0.9",
"gulp-if": "^3.0.0",
"gulp-imagemin": "^7.1.0",
"gulp-run": "^1.7.1",
"gulp-sass": "^4.0.2",
"gulp-size": "^3.0.0",
"http-server": "^0.12.1",
"imagemin-mozjpeg": "^8.0.0",
"imagemin-pngquant": "^8.0.0",
"imagemin-svgo": "^7.1.0",
"jstransformer-markdown-it": "^2.1.0",
"jstransformer-nunjucks": "^1.0.0",
"metalsmith": "^2.3.0",
"metalsmith-beautify": "^0.2.0",
"metalsmith-collections": "^0.9.0",
"metalsmith-drafts": "^1.0.0",
"metalsmith-frontmatter-file-loader": "^1.1.0",
"metalsmith-frontmatter-renderer": "^1.5.0",
"metalsmith-fs-metadata": "github:dw-buildit/metalsmith-fs-metadata",
"metalsmith-html-minifier": "^4.0.1",
"metalsmith-in-place": "^4.4.1",
"metalsmith-layouts": "^2.3.1",
"metalsmith-mapsite": "^1.0.6",
"metalsmith-serve": "0.0.7",
"minimist": "^1.2.5",
"pa11y-ci": "^2.3.0",
"prettier": "^2.0.2",
"rollup": "^2.2.0",
"rollup-plugin-babel": "^4.4.0",
"rollup-plugin-closure-compiler-js": "github:dw-buildit/rollup-plugin-closure-compiler-js",
"rollup-plugin-node-resolve": "^5.2.0",
"stylelint": "^13.2.1",
"stylelint-config-sass-guidelines": "^7.0.0",
"stylelint-order": "^4.0.0",
"stylelint-scss": "^3.16.0"
},
"dependencies": {}
}