This repository was archived by the owner on Feb 3, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
70 lines (70 loc) · 1.92 KB
/
Copy pathpackage.json
File metadata and controls
70 lines (70 loc) · 1.92 KB
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
{
"name": "open-jamstack-comments",
"version": "0.1.0",
"description": "Comments on a static site, inspired by Phil's Jamstack Comments Engine, uses emails for moderation",
"main": "",
"scripts": {
"clean": "rm -rf dist && mkdir -p dist/assets",
"develop": "gulp develop",
"dev": "run-s clean develop",
"staging": "gulp staging",
"prod": "gulp production",
"force-prod": "ELEVENTY_ENV=production NODE_ENV=production gulp production",
"test": "echo \"Error: no test specified\" && exit 1"
},
"husky": {
"hooks": {
"pre-commit": "pretty-quick --staged"
}
},
"author": "Ru Singh <hello@rusingh.com>",
"license": "GNU GPLv3",
"devDependencies": {
"@types/gulp": "^4.0.6",
"@types/gulp-postcss": "^8.0.0",
"@types/node-fetch": "^2.5.7",
"husky": "^4.2.5",
"prettier": "^1.19.1",
"pretty-quick": "^2.0.1"
},
"dependencies": {
"@11ty/eleventy": "^0.11.0",
"@babel/core": "^7.6.4",
"@babel/plugin-transform-runtime": "^7.9.0",
"@babel/preset-env": "^7.9.5",
"@babel/register": "^7.6.2",
"@babel/runtime": "^7.9.2",
"@fullhuman/postcss-purgecss": "^1.3.0",
"@sendgrid/mail": "^7.1.1",
"autoprefixer": "^9.6.1",
"babelify": "^10.0.0",
"browserify": "^16.5.1",
"child_process": "^1.0.2",
"cssnano": "^4.1.10",
"date-fns": "^2.12.0",
"date-fns-tz": "^1.0.10",
"dotenv": "^8.2.0",
"fancy-log": "^1.3.3",
"gulp": "^4.0.2",
"gulp-babel": "^8.0.0",
"gulp-concat": "^2.6.1",
"gulp-htmlmin": "^5.0.1",
"gulp-if": "^3.0.0",
"gulp-imagemin": "^6.1.0",
"gulp-postcss": "^8.0.0",
"gulp-uglify": "^3.0.2",
"lodash.merge": "^4.6.2",
"lodash.unionby": "^4.8.0",
"netlify": "^4.1.7",
"node-fetch": "^2.6.1",
"npm-run-all": "^4.1.5",
"postcss-import": "^12.0.1",
"postcss-nesting": "^7.0.1",
"qs": "^6.9.4",
"tailwindcss": "^1.1.2",
"vinyl-buffer": "^1.0.1",
"vinyl-source-stream": "^2.0.0",
"watchify": "^3.11.1"
},
"browserslist": ">1%, Firefox ESR, last 2 versions"
}