-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
42 lines (42 loc) · 1.4 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
{
"name": "practice",
"version": "1.0.0",
"description": "Proyecto de practica usando tecnologias como webpack con asincronismo",
"main": "index.js",
"scripts": {
"wpk:prod": "node ./scripts/create-env.js && webpack --mode production --config webpack.config.js",
"build": "node ./scripts/create-env.js && webpack --mode production --config webpack.config.js",
"test": "echo \"Error: no test specified\" && exit 1",
"wpk:dev": "webpack --mode development --config webpack.config.dev.js",
"wpk:watch-prod": "webpack --watch --config webpack.config.dev.js",
"wpk:watch-dev": "webpack --watch --config webpack.config.js"
},
"keywords": [
"JavaScript",
"Webpack",
"Asincronismo",
"Marvel"
],
"author": "David Valencia <[email protected]>",
"license": "MIT",
"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": "*",
"copy-webpack-plugin": "^8.1.1",
"css-loader": "^5.2.4",
"css-minimizer-webpack-plugin": "^2.0.0",
"dotenv-webpack": "^7.0.2",
"html-webpack-plugin": "^5.3.1",
"mini-css-extract-plugin": "^1.6.0",
"terser-webpack-plugin": "^5.1.1",
"webpack": "^5.36.2",
"webpack-cli": "^4.7.0",
"webpack-dev-server": "^3.11.2"
},
"dependencies": {
"xmlhttprequest": "^1.8.0"
}
}