-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
49 lines (49 loc) · 1.46 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
{
"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 serve --config webpack.config.dev.js",
"start": "webpack serve --config webpack.config.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/gndx/js-portfolio.git"
},
"keywords": [
"javascript",
"html",
"css"
],
"author": "oscar barajas <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/gndx/js-portfolio/issues"
},
"homepage": "https://github.com/gndx/js-portfolio#readme",
"devDependencies": {
"@babel/core": "7.26.0",
"@babel/plugin-transform-runtime": "7.25.9",
"@babel/preset-env": "7.26.0",
"babel-loader": "9.2.1",
"clean-webpack-plugin": "4.0.0",
"copy-webpack-plugin": "12.0.2",
"css-loader": "7.1.2",
"css-minimizer-webpack-plugin": "7.0.0",
"dotenv-webpack": "8.1.0",
"file-loader": "6.2.0",
"html-webpack-plugin": "5.6.3",
"mini-css-extract-plugin": "2.9.2",
"stylus": "0.64.0",
"stylus-loader": "8.1.1",
"terser-webpack-plugin": "5.3.11",
"url-loader": "4.1.1",
"webpack": "5.97.1",
"webpack-bundle-analyzer": "4.10.2",
"webpack-cli": "6.0.1",
"webpack-dev-server": "5.2.0"
}
}