-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
60 lines (60 loc) · 2 KB
/
package.json
File metadata and controls
60 lines (60 loc) · 2 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
{
"name": "kusha.me",
"version": "3.0.0",
"description": "Just another static blog and portfolio website built on VueJS and hosted on GitHub pages.",
"main": "index.js",
"scripts": {
"prd-build": "webpack --config ./build/webpack.prod.js",
"dev-build": "webpack --config ./build/webpack.dev.js",
"start": "webpack serve --config ./build/webpack.dev.js",
"run-prd-build": "npm run prd-build && python3 -m http.server --directory dist/",
"lighthouse": "npm run prd-build && lhci autorun --config=.github/workflows/.lighthouserc.js && node .github/workflows/lighthousescores.js",
"lint": "eslint . -c build/.eslintrc.js --ext .js,.vue"
},
"repository": "git+https://github.com/kushagharahi/kushagharahi.github.io.git",
"author": "Kusha Gharahi",
"license": "GPLv3",
"bugs": {
"url": "https://github.com/kushagharahi/kushagharahi.github.io/issues"
},
"homepage": "https://github.com/kushagharahi/kushagharahi.github.io#readme",
"devDependencies": {
"@babel/core": "^7.18.13",
"@babel/preset-env": "^7.11.5",
"@prerenderer/prerenderer": "^1.2.2",
"@prerenderer/renderer-puppeteer": "^1.2.0",
"@prerenderer/webpack-plugin": "^5.3.5",
"babel-loader": "^8.2.5",
"css-loader": "^6.7.1",
"eslint": "^8.22.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-prettier": "^5.0.0",
"eslint-plugin-vue": "^9.4.0",
"eslint-webpack-plugin": "^3.2.0",
"html-loader": "^4.2.0",
"html-webpack-plugin": "^5.5.3",
"markdown-loader": "^8.0.0",
"sass": "^1.54.5",
"sass-loader": "^13.0.2",
"sitemap-webpack-plugin": "^1.1.1",
"style-loader": "^3.3.1",
"terser-webpack-plugin": "^5.3.5",
"vue-loader": "^17.0.0",
"webpack": "^5.74.0",
"webpack-cli": "^4.10.0",
"webpack-dev-server": "^4.10.0",
"webpack-merge": "^5.9.0"
},
"keywords": [
"Kusha",
"Gharahi",
"Portfolio",
"Software",
"Development",
"kusha.me"
],
"dependencies": {
"vue": "^3.2.37",
"vue-router": "^4.1.4"
}
}