-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
39 lines (39 loc) · 1.06 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
{
"name": "portfolio",
"version": "1.0.0",
"description": "My personal portfolio website.",
"private": true,
"scripts": {
"start": "webpack serve --mode development",
"watch": "webpack --watch --mode development",
"build": "webpack --mode production",
"build-dev": "webpack",
"deploy": "gh-pages -d dist",
"lint": "eslint .",
"lint:fix": "eslint --fix .",
"format": "prettier --write \"**/*.+(js|json|html|css|md)\""
},
"author": "Raj Shekhar",
"license": "GPL-3.0-or-later",
"homepage": "https://rajshekhar26.github.io",
"devDependencies": {
"@babel/core": "^7.15.5",
"@babel/preset-env": "^7.15.4",
"babel-loader": "^8.2.2",
"clean-webpack-plugin": "^4.0.0",
"css-loader": "^6.2.0",
"css-minimizer-webpack-plugin": "^3.0.2",
"eslint": "^7.32.0",
"eslint-config-prettier": "^8.3.0",
"gh-pages": "^3.2.3",
"html-webpack-plugin": "^5.3.2",
"mini-css-extract-plugin": "^2.2.2",
"prettier": "^2.3.2",
"webpack": "^5.52.0",
"webpack-cli": "^4.8.0",
"webpack-dev-server": "^4.1.0"
},
"dependencies": {
"html-loader": "^2.1.2"
}
}