-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 924 Bytes
/
package.json
File metadata and controls
37 lines (37 loc) · 924 Bytes
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
{
"name": "lee-haksung-portfolio",
"version": "1.0.0",
"description": "이학성 개발자 포트폴리오",
"main": "index.js",
"scripts": {
"start": "npx webpack serve --mode development",
"build": "npx webpack --mode production",
"predeploy": "npm run build",
"deploy": "gh-pages -d dist"
},
"devDependencies": {
"@babel/core": "^7.22.0",
"@babel/preset-env": "^7.22.0",
"@babel/preset-react": "^7.22.0",
"babel-loader": "^9.1.0",
"css-loader": "^6.8.0",
"gh-pages": "^5.0.0",
"html-webpack-plugin": "^5.5.0",
"style-loader": "^3.3.0",
"webpack": "^5.88.0",
"webpack-cli": "^5.1.0",
"webpack-dev-server": "^4.15.0"
},
"dependencies": {
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-router-dom": "^6.26.0"
},
"keywords": [
"react",
"portfolio",
"github-pages"
],
"author": "이학성",
"license": "MIT"
}