-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1.43 KB
/
Copy pathpackage.json
File metadata and controls
48 lines (48 loc) · 1.43 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
{
"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": "webpack --config webpack.config.dev.js --watch"
},
"repository": {
"type": "git",
"url": "git+https://github.com/gndx/js-portfolio.git"
},
"keywords": [
"javascript",
"html",
"css"
],
"author": "oscar barajas <oscar@gndx.dev>",
"license": "MIT",
"bugs": {
"url": "https://github.com/gndx/js-portfolio/issues"
},
"homepage": "https://github.com/gndx/js-portfolio#readme",
"devDependencies": {
"@babel/core": "^7.21.4",
"@babel/plugin-transform-runtime": "^7.21.4",
"@babel/preset-env": "^7.21.4",
"babel-loader": "^9.1.2",
"clean-webpack-plugin": "^4.0.0",
"copy-webpack-plugin": "^11.0.0",
"css-loader": "^6.7.3",
"css-minimizer-webpack-plugin": "^5.0.0",
"dotenv-webpack": "^8.0.1",
"file-loader": "^6.2.0",
"html-webpack-plugin": "^5.5.0",
"mini-css-extract-plugin": "^2.7.5",
"node-sass": "^8.0.0",
"sass-loader": "^13.2.2",
"style-loader": "^3.3.2",
"terser-webpack-plugin": "^5.3.9",
"url-loader": "^4.1.1",
"webpack": "^5.78.0",
"webpack-cli": "^5.0.1"
}
}