-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
47 lines (47 loc) · 1.37 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
40
41
42
43
44
45
46
47
{
"name": "js-portfolio",
"version": "1.0.0",
"description": "A minimal portfolio with Vanilla JavaScript",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "node ./scripts/create-env.js && webpack --mode production --config webpack.config.js",
"dev": "webpack --config webpack.config.dev.js",
"watch": "npm run dev --watch"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Laeka/webpack-practice.git"
},
"keywords": [
"javascript",
"html",
"css"
],
"author": "Laekagg",
"license": "MIT",
"bugs": {
"url": "https://github.com/Laeka/webpack-practice/issues"
},
"homepage": "https://github.com/Laeka/webpack-practice#readme",
"devDependencies": {
"@babel/core": "^7.18.6",
"@babel/plugin-transform-runtime": "^7.18.6",
"@babel/preset-env": "^7.18.6",
"babel-loader": "^8.2.5",
"clean-webpack-plugin": "^4.0.0",
"copy-webpack-plugin": "^11.0.0",
"css-loader": "^6.7.1",
"css-minimizer-webpack-plugin": "^4.0.0",
"dotenv-webpack": "^8.0.0",
"file-loader": "^6.2.0",
"html-webpack-plugin": "^5.5.0",
"mini-css-extract-plugin": "^2.6.1",
"stylus": "^0.58.1",
"stylus-loader": "^7.0.0",
"terser-webpack-plugin": "^5.3.3",
"url-loader": "^4.1.1",
"webpack": "^5.73.0",
"webpack-cli": "^4.10.0"
}
}