generated from ianrose/deventy
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
61 lines (61 loc) · 2.19 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
{
"name": "blog",
"version": "1.5.0",
"description": "Rvi's personal blog",
"main": "index.js",
"scripts": {
"--x": "=============================- SETUP -=========================",
"prepare": "husky install",
"clean": "rm -rf dist",
"--xx": "==============================- ELEVENTY -==============================",
"eleventy:default": "ELEVENTY_PRODUCTION=true npx eleventy",
"eleventy:watch": "npx eleventy --watch",
"--xxx": "==================================- STYLES -==============================",
"styles:prod": "sass src/styles/:dist/styles/ --no-source-map && NODE_ENV=production postcss ./dist/styles/*.css --replace",
"styles:dev": "sass src/styles/:dist/styles/ --embed-source-map && postcss ./dist/styles/*.css --replace",
"--xxxx": "=========================- BUILD AND SERVE -=========================",
"serve": "light-server -c .lightserverrc",
"dev": "npm-run-all clean eleventy:default styles:dev --parallel eleventy:watch serve --print-label",
"dev:debug": "DEBUG=* npm run dev",
"build": "run-s clean eleventy:default styles:prod --print-label"
},
"repository": {
"type": "git",
"url": "https://github.com/rvisharma/blog.git"
},
"author": "",
"license": "MIT",
"bugs": {
"url": "https://github.com/rvisharma/blog/issues"
},
"homepage": "https://github.com/rvisharma/blog#readme",
"devDependencies": {
"@11ty/eleventy-plugin-syntaxhighlight": "^3.1.2",
"@11ty/eleventy-upgrade-help": "^1.0.1",
"eslint": "^7.32.0",
"eslint-config-prettier": "^8.3.0",
"husky": "^7.0.2",
"light-server": "2.9.1",
"lint-staged": "^11.1.2",
"markdown-it-anchor": "^8.3.1",
"markdown-it-attrs": "^4.0.0",
"prettier": "2.4.1",
"sass": "^1.45.0",
"tailwindcss": "^2.2.15"
},
"dependencies": {
"@11ty/eleventy": "^1.0.0-beta.2",
"@11ty/eleventy-img": "^0.10.0",
"@tailwindcss/typography": "^0.4.1",
"autoprefixer": "^10.3.4",
"cssnano": "^5.0.8",
"markdown-it": "^12.2.0",
"npm-run-all": "^4.1.5",
"postcss": "^8.3.6",
"postcss-cli": "^8.3.1"
},
"lint-staged": {
"*.js": "eslint --cache --fix",
"*.{js,css,md,json,jsonc}": "prettier --write"
}
}