-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
81 lines (81 loc) · 2.1 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
{
"name": "vinaybhinde.in",
"version": "1.0.0",
"description": "Personal site by Vinay Bhinde",
"main": "index.md",
"scripts": {
"clean": "rimraf _site assets _includes/styles _includes/scripts _includes/favicons.liquid",
"format:js": "prettier --write './**/*.js'",
"format:less": "prettier --write './**/*.less'",
"format:md": "prettier --write './**/*.md'",
"bundle": "node .scripts/bundle.js",
"favicons": "node .scripts/favicons.js",
"images": "node .scripts/images.js",
"less": "node .scripts/less.js",
"serve": "eleventy --serve",
"build": "DEBUG=* eleventy",
"assets": "npm run bundle && npm run less && npm run favicons && npm run images",
"validate:feed": "npx feed-validator _site/feed.xml --no-showfeed",
"prerelease": "npm run clean",
"release": "npm run assets && npm run build",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "github.com/vinaynb/vinaybhinde.in"
},
"keywords": [
"blog",
"personal site",
"vinay bhinde"
],
"author": "Vinay Bhinde",
"license": "MIT",
"devDependencies": {
"@11ty/eleventy": "^0.12.1",
"@11ty/eleventy-plugin-syntaxhighlight": "^2.0.3",
"autoprefixer": "^9.6.1",
"chalk": "^2.4.2",
"cssnano": "^4.1.10",
"eleventy-nbsp-filter": "^0.1.0",
"eleventy-xml-plugin": "^0.1.0",
"favicons": "^5.4.1",
"glob": "^7.1.4",
"html-minifier": "^4.0.0",
"husky": "^3.0.0",
"jimp": "^0.16.1",
"less": "^3.9.0",
"lint-staged": "^9.2.0",
"mkdirp": "^0.5.1",
"postcss": "^8.2.13",
"prettier": "^1.18.2",
"rimraf": "^2.6.3",
"rollup": "^1.17.0",
"rollup-plugin-buble": "^0.19.8",
"rollup-plugin-commonjs": "^10.0.1",
"rollup-plugin-node-resolve": "^5.2.0",
"rollup-plugin-replace": "^2.2.0",
"rollup-plugin-terser": "^5.1.1"
},
"dependencies": {
"fontfaceobserver": "^2.1.0",
"markdown-it": "^10.0.0",
"markdown-it-anchor": "^5.2.4",
"store-css": "^1.0.2"
},
"lint-staged": {
"./**/*.js": [
"prettier --write",
"git add"
],
"./**/*.less": [
"prettier --write",
"git add"
]
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
}
}