-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
93 lines (93 loc) · 2.91 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
92
93
{
"name": "create-amp-page",
"version": "1.0.0-beta.2",
"license": "MIT",
"homepage": "https://github.com/bemit/create-amp-page",
"author": "Michael Becker <https://i-am-digital.eu>",
"description": "Full fledged static side generator composed out of extendable gulp tasks, optimized for - but not limited to - AMP.",
"keywords": [
"amp",
"accelerated-mobile-pages",
"ssr",
"static-site-generator",
"static-site-renderer",
"gulp",
"twig",
"sass",
"frontmatter",
"netlify",
"netlify-cms"
],
"engines": {
"node": "^12.20.0 || ^14.13.1 || >=16.0.0"
},
"type": "module",
"module": "index.js",
"repository": {
"type": "git",
"url": "https://github.com/bemit/create-amp-page.git"
},
"scripts": {
"tasks": "gulp --tasks",
"gulp": "gulp",
"start": "cross-env NODE_ENV=development gulp watch",
"prebuild": "rimraf build && mkdirp build",
"build": "cp -r src/* build/ && cp package.json build/ && cp package-lock.json build/ && cp README.md build/ && cp LICENSE.md build/",
"build-example": "cross-env NODE_ENV=production gulp build",
"clean": "gulp clean"
},
"devDependencies": {
"@formanta/sass": "^0.20.2",
"@ampproject/toolbox-optimizer": "^2.7.4"
},
"peerDependencies": {
"@ampproject/toolbox-optimizer": "^2.7.4"
},
"peerDependenciesMeta": {
"@ampproject/toolbox-optimizer": {
"optional": true
}
},
"dependencies": {
"@types/gulp": "^4.0.8",
"@types/html-minifier": "^4.0.2",
"@types/through2": "^2.0.36",
"@types/twig": "^1.12.5",
"autoprefixer": "^10.3.4",
"browser-sync": "^2.26.13",
"colors": "^1.3",
"connect-history-api-fallback": "^1.6.0",
"cross-env": "^7.0.3",
"cssnano": "^5.0.8",
"del": "^6.0.0",
"email-comb": "^6.0.0",
"front-matter": "^4.0.2",
"gulp": "^4.0.2",
"gulp-copy": "^4.0.1",
"gulp-cssnano": "^2.1.3",
"gulp-data": "^1.3.1",
"gulp-imagemin": "^8.0.0",
"gulp-inject-string": "^1.1.2",
"gulp-newer": "^1.4.0",
"gulp-plumber": "^1.2.1",
"gulp-postcss": "^9.0.1",
"gulp-rename": "^2.0.0",
"gulp-replace": "^1.1.3",
"gulp-sass": "^5.0.0",
"gulp-twig": "^1.2.0",
"gulplog": "^1.0.0",
"html-minifier": "^4.0.0",
"image-size": "^1.0.0",
"imagemin-gifsicle": "^7.0.0",
"imagemin-mozjpeg": "^9.0.0",
"imagemin-optipng": "^8.0.0",
"imagemin-svgo": "^10.0.0",
"map-stream": "0.0.7",
"mkdirp": "^1.0.4",
"node-sass": "^6.0.1",
"node-sass-tilde-importer": "^1.0.2",
"postcss-import": "^14.0.2",
"sharp": "~0.29.1",
"through2": "^4.0.2"
}
}