forked from razonyang/hugo-theme-bootstrap
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
100 lines (100 loc) · 3.27 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
94
95
96
97
98
99
100
{
"name": "hugo-theme-bootstrap",
"description": "Hugo bootstrap theme",
"dependencies": {
"@fortawesome/fontawesome-free": "^5.15.4",
"@fortawesome/fontawesome-svg-core": "^1.2.36",
"@fortawesome/free-brands-svg-icons": "^5.15.4",
"@fortawesome/free-regular-svg-icons": "^5.15.4",
"@fortawesome/free-solid-svg-icons": "^5.15.4",
"@material/elevation": "^12.0.0",
"bootstrap": "^5.0.2",
"fibers": "^5.0.0",
"fuse.js": "^6.5.3",
"katex": "^0.13.13",
"mark.js": "^8.11.1",
"mermaid": "^8.12.0",
"mustache": "^4.0.1",
"node-sass": "^6.0.1",
"popper.js": "^1.16.1",
"viewerjs": "^1.10.2",
"workbox-broadcast-update": "^6.4.1",
"workbox-cacheable-response": "^6.3.0",
"workbox-expiration": "^6.3.0",
"workbox-precaching": "^6.3.0",
"workbox-routing": "^6.3.0",
"workbox-strategies": "^6.3.0"
},
"devDependencies": {
"@babel/core": "^7.15.0",
"@popperjs/core": "^2.9.3",
"@typescript-eslint/eslint-plugin": "^4.29.1",
"@typescript-eslint/parser": "^4.29.1",
"autoprefixer": "^10.3.1",
"babel-loader": "^8.1.0",
"copy-webpack-plugin": "^6.3.1",
"css-loader": "^5.2.7",
"eslint": "^7.32.0",
"eslint-config-airbnb": "^18.2.1",
"eslint-config-airbnb-typescript": "^12.0.0",
"eslint-plugin-import": "^2.24.0",
"eslint-plugin-jasmine-jquery": "^1.0.0",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-react": "^7.24.0",
"eslint-plugin-react-hooks": "^4.2.0",
"eslint-webpack-plugin": "^2.2.1",
"file-loader": "^6.1.1",
"line-column": "^1.0.2",
"mini-css-extract-plugin": "^1.6.2",
"npm-run-all": "^4.1.5",
"npm-watch": "^0.7.0",
"postcss": "^8.3.6",
"postcss-loader": "^4.3.0",
"sass": "^1.37.5",
"sass-loader": "^10.2.0",
"scss": "^0.2.4",
"scss-loader": "^0.0.1",
"style-loader": "^2.0.0",
"stylelint": "^13.13.1",
"stylelint-config-standard": "^22.0.0",
"stylelint-scss": "^3.20.1",
"terser-webpack-plugin": "^5.2.4",
"ts-loader": "^8.3.0",
"typescript": "^4.3.5",
"url-loader": "^4.1.1",
"watch": "^1.0.2",
"webpack": "^5.50.0",
"webpack-bundle-analyzer": "^4.4.2",
"webpack-cli": "^4.7.2"
},
"scripts": {
"serve": "hugo server --source=exampleSite --themesDir=../../ --buildDrafts --disableFastRender",
"build": "npm-run-all --parallel build:css build:js",
"build:css": "sass --style compressed --load-path=node_modules src/scss/index.scss assets/css/main.css",
"build:js": "webpack",
"lint": "npm-run-all --parallel eslint stylelint",
"eslint": "eslint ./src --ext .js,.jsx,.ts,.tsx --fix",
"stylelint": "stylelint ./src/**/*.scss --fix",
"i18n": "node src/scripts/i18n.js",
"watch": "watch 'npm run build' src",
"watch:css": "watch 'npm run build:css' src",
"watch:js": "watch 'npm run build:js' src"
},
"repository": {
"type": "git",
"url": "git+https://github.com/razonyang/hugo-theme-bootstrap.git"
},
"keywords": [
"hugo",
"theme",
"blog",
"bootstrap",
"bootstrap5"
],
"author": "Razon Yang <razonyang@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/razonyang/hugo-theme-bootstrap/issues"
},
"homepage": "https://github.com/razonyang/hugo-theme-bootstrap#readme"
}