-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
79 lines (79 loc) · 2.25 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
{
"name": "contact-page",
"version": "0.0.0",
"description": "Website with contact info",
"scripts": {
"dev:assets": "webpack --config webpack.config.dev.js",
"dev:site": "ELEVENTY_ENV=development eleventy --serve",
"start": "npm-run-all --parallel dev:assets dev:site",
"build:clean": "rimraf ./build ./src/compiled-assets",
"build:assets": "NODE_ENV=production webpack --config webpack.config.prod.js",
"build:site": "ELEVENTY_ENV=production eleventy",
"build": "npm-run-all build:clean build:assets build:site",
"lint": "eslint '**/*.{js,jsx}' --quiet"
},
"author": "Bryon Tjanaka",
"license": "MIT",
"dependencies": {
"@11ty/eleventy": "0.12.1",
"@11ty/eleventy-plugin-rss": "1.1.0",
"@11ty/eleventy-plugin-syntaxhighlight": "3.0.6",
"@babel/core": "7.12.0",
"@babel/preset-env": "7.12.0",
"@iktakahiro/markdown-it-katex": "4.0.1",
"@tailwindcss/typography": "0.4.0",
"autoprefixer": "10.2.4",
"babel-loader": "8.1.0",
"cheerio": "1.0.0-rc.10",
"core-js": "3.6.5",
"css-loader": "5.0.0",
"fibers": "5.0.0",
"html-minifier": "4.0.0",
"jquery": "3.5.1",
"markdown-it": "12.3.2",
"markdown-it-anchor": "6.0.1",
"markdown-it-center-text": "1.0.4",
"markdown-it-implicit-figures": "0.10.0",
"markdown-it-toc-done-right": "4.2.0",
"md5-file": "5.0.0",
"mini-css-extract-plugin": "1.6.1",
"npm-run-all": "4.1.5",
"optimize-css-assets-webpack-plugin": "6.0.1",
"popper.js": "1.16.1",
"postcss": "8.3.5",
"postcss-loader": "4.0.4",
"qrcode": "1.5.0",
"rimraf": "3.0.2",
"sass": "1.27.0",
"sass-loader": "10.0.3",
"sharp": "0.29.3",
"tailwindcss": "2.0.2",
"terser-webpack-plugin": "4.1.0",
"to-ico": "1.1.5",
"webpack": "5.62.1",
"webpack-cli": "4.9.1",
"webpack-merge": "5.1.3"
},
"devDependencies": {
"eslint": "7.32.0",
"eslint-config-google": "0.12.0",
"eslint-config-prettier": "4.3.0",
"husky": "2.3.0",
"lint-staged": "11.0.0",
"prettier": "2.1.2"
},
"lint-staged": {
"*.{json,css,scss}": [
"prettier --write"
],
"*.js": [
"eslint",
"prettier --write"
]
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
}
}