-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
77 lines (77 loc) · 2.56 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
{
"name": "static-cms-hugo-netlify-template",
"version": "1.0.0",
"license": "MIT",
"description": "static-cms-hugo-netlify-template is a Hugo boilerplate website for Static CMS",
"repository": "https://github.com/StaticJsCMS/static-cms-hugo-netlify-template",
"bugs": "https://github.com/StaticJsCMS/static-cms-hugo-netlify-template/issues",
"keywords": [
"hugo",
"static",
"cms",
"core",
"netlify"
],
"scripts": {
"lint": "eslint src",
"start": "run-p start:**",
"start:hugo": "hugo -d ../dist -s site -vw",
"start:webpack": "webpack-dev-server --config webpack.dev.js --hot --stats-error-details",
"preview": "run-p preview:**",
"preview:hugo": "npm run start:hugo -- -D -F",
"preview:webpack": "npm run start:webpack",
"prebuild": "rimraf dist",
"build": "npm run build:webpack && npm run build:hugo",
"build:preview": "npm run build:webpack && npm run build:hugo:preview",
"build:hugo": "hugo -d ../dist -s site -v",
"build:hugo:preview": "npm run build:hugo -- -D -F",
"build:webpack": "cross-env NODE_ENV=production webpack --config webpack.prod.js"
},
"main": "index.js",
"dependencies": {
"date-fns": "^2.29.3",
"@staticcms/core": "^3.0.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"to-string-loader": "^1.2.0"
},
"devDependencies": {
"@types/react": "^18.2.33",
"@babel/core": "^7.21.0",
"@babel/eslint-parser": "^7.19.1",
"@babel/preset-env": "^7.20.2",
"@babel/preset-react": "^7.18.6",
"@babel/register": "^7.21.0",
"@babel/plugin-syntax-object-rest-spread": "^7.8.3",
"assets-webpack-plugin": "^7.1.1",
"autoprefixer": "^10.4.14",
"babel-loader": "^9.1.2",
"clean-webpack-plugin": "^4.0.0",
"copy-webpack-plugin": "^11.0.0",
"cross-env": "^7.0.3",
"css-loader": "^6.7.3",
"css-minimizer-webpack-plugin": "^5.0.0",
"eslint": "^8.36.0",
"eslint-plugin-import": "^2.27.5",
"exports-loader": "^4.0.0",
"file-loader": "^6.2.0",
"html-webpack-plugin": "^5.5.0",
"hugo-bin": "^0.116.1",
"imports-loader": "^4.0.1",
"mini-css-extract-plugin": "^2.7.3",
"npm-run-all": "^4.1.5",
"postcss": "^8.4.21",
"postcss-custom-media": "^10.0.0",
"postcss-import": "^15.1.0",
"postcss-loader": "^7.0.2",
"postcss-preset-env": "^9.0.0",
"sass": "^1.59.2",
"sass-loader": "^13.2.0",
"style-loader": "^3.3.2",
"terser-webpack-plugin": "^5.3.7",
"webpack": "^5.76.2",
"webpack-cli": "^5.0.1",
"webpack-dev-server": "^4.11.1",
"webpack-merge": "^5.8.0"
}
}