-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
71 lines (71 loc) · 2.19 KB
/
package.json
File metadata and controls
71 lines (71 loc) · 2.19 KB
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
{
"name": "pogim",
"version": "1.0.14",
"description": "",
"repository": "gerev/pogim",
"main": "index.js",
"engineStrict": true,
"engines": {
"node": ">=22.0.0"
},
"scripts": {
"lint": "eslint src",
"start": "run-p start:**",
"start:hugo": "hugo -vw",
"start:webpack": "webpack-dev-server --config webpack.dev.js",
"prebuild": "rimraf public/* && rimraf assets",
"build": "yarn build:webpack && yarn build:hugo",
"build:hugo": "hugo -v",
"build:webpack": "cross-env NODE_ENV=production NODE_OPTIONS=--openssl-legacy-provider webpack --config webpack.prod.js",
"deploy": "scripts/deploy.sh"
},
"author": "Amir Grozki",
"license": "MIT",
"devDependencies": {
"@babel/core": "^7.4.5",
"@babel/plugin-proposal-object-rest-spread": "^7.4.4",
"@babel/plugin-syntax-object-rest-spread": "^7.2.0",
"@babel/plugin-transform-async-to-generator": "^7.4.4",
"@babel/plugin-transform-runtime": "^7.4.4",
"@babel/preset-env": "^7.4.5",
"@babel/register": "^7.4.4",
"assets-webpack-plugin": "^3.9.10",
"babel-eslint": "^10.0.1",
"babel-loader": "^8.0.6",
"clean-webpack-plugin": "^3.0.0",
"copy-webpack-plugin": "^5.0.3",
"cross-env": "^7.0.0",
"css-loader": "^3.0.0",
"eslint": "^6.8.0",
"eslint-plugin-import": "^2.17.3",
"exports-loader": "^0.7.0",
"fancy-log": "^1.3.3",
"file-loader": "^5.0.2",
"hugo-bin": "^0.63.1",
"imports-loader": "^0.8.0",
"mini-css-extract-plugin": "^0.9.0",
"npm-run-all": "^4.1.5",
"optimize-css-assets-webpack-plugin": "^5.0.1",
"plugin-error": "^1.0.1",
"postcss-import": "^12.0.1",
"postcss-loader": "^3.0.0",
"postcss-preset-env": "^6.6.0",
"rimraf": "^3.0.1",
"sass": "^1.32.8",
"sass-loader": "^10.4.1",
"style-loader": "^1.1.3",
"terser-webpack-plugin": "^2.3.4",
"url-loader": "^3.0.0",
"webpack": "^4.34.0",
"webpack-cli": "^3.3.4",
"webpack-dev-server": "^3.7.1",
"webpack-merge": "^4.2.1"
},
"resolutions": {
"natives": "1.1.6"
},
"dependencies": {
"@babel/runtime": "^7.4.5",
"normalize.css": "^8.0.1"
}
}