-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
51 lines (50 loc) · 1.6 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
48
49
50
51
{
"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",
"build:watch": "webpack --mode production --watch --config webpack.config.js",
"dev": "webpack --config webpack.config.dev.js",
"start": "webpack server --config webpack.config.dev.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/jimmyvasquez/curso-webpack.git"
},
"keywords": [
"javascript",
"html",
"css"
],
"author": "jimmy vasquez <jimmy.vasquez22@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/jimmyvasquez/curso-webpack/issues"
},
"homepage": "https://github.com/jimmyvasquez/curso-webpack#readme",
"devDependencies": {
"@babel/core": "^7.14.0",
"@babel/plugin-transform-runtime": "^7.13.15",
"@babel/preset-env": "^7.14.1",
"babel-loader": "^8.2.2",
"clean-webpack-plugin": "^4.0.0-alpha.0",
"copy-webpack-plugin": "^8.1.1",
"css-loader": "^5.2.4",
"css-minimizer-webpack-plugin": "^3.0.0",
"dotenv-webpack": "^7.0.2",
"file-loader": "^6.2.0",
"html-webpack-plugin": "^5.3.1",
"mini-css-extract-plugin": "^1.6.0",
"stylus": "^0.54.8",
"stylus-loader": "^6.0.0",
"terser-webpack-plugin": "^5.1.2",
"url-loader": "^4.1.1",
"webpack": "^5.37.0",
"webpack-bundle-analyzer": "^4.4.2",
"webpack-cli": "^4.7.0",
"webpack-dev-server": "^3.11.2"
}
}