-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (54 loc) · 1.63 KB
/
Copy pathpackage.json
File metadata and controls
54 lines (54 loc) · 1.63 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
{
"name": "learning-webpack",
"version": "0.0.0",
"description": "웹팩 가이드라인 따라해보면서 학습해보기",
"main": "index.html",
"scripts": {
"prettier": "prettier --write .",
"watch": "webpack --watch",
"start": "webpack serve --open",
"server": "node server.js",
"analysis": "webpack --profile --json > stats.json",
"build": "webpack",
"deploy": "npm run build && npx gh-pages -d dist"
},
"author": "jaehyeonjung0613",
"homepage": "https://jaehyeonjung0613.github.io/learning-webpack",
"license": "MIT",
"devDependencies": {
"@types/lodash": "^4.17.9",
"@types/node": "^22.7.5",
"@types/webpack-env": "^1.18.5",
"@typescript-eslint/eslint-plugin": "^8.7.0",
"@typescript-eslint/parser": "^8.7.0",
"css-loader": "^7.1.2",
"css-minimizer-webpack-plugin": "^7.0.0",
"csv-loader": "^3.0.5",
"eslint": "^9.11.1",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.2.1",
"express": "^4.21.0",
"html-webpack-plugin": "^5.6.0",
"json5": "^2.2.3",
"lodash": "^4.17.21",
"mini-css-extract-plugin": "^2.9.1",
"prettier": "^3.3.3",
"style-loader": "^4.0.0",
"toml": "^3.0.0",
"ts-loader": "^9.5.1",
"tsconfig-paths-webpack-plugin": "^4.1.0",
"typescript": "^5.6.2",
"webpack": "^5.95.0",
"webpack-cli": "^5.1.4",
"webpack-dev-middleware": "^7.4.2",
"webpack-dev-server": "^5.1.0",
"webpack-merge": "^6.0.1",
"workbox-webpack-plugin": "^7.1.0",
"xml-loader": "^1.2.1",
"yamljs": "^0.3.0"
},
"dependencies": {
"babel-polyfill": "^6.26.0",
"whatwg-fetch": "^3.6.20"
}
}