-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
41 lines (41 loc) · 1.23 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
{
"name": "js-dev-en",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"webpack-dev-server": "webpack-dev-server",
"webpack": "webpack",
"debug": "node --inspect --inspect-brk ./node_modules/webpack/bin/webpack.js",
"prod": "npm run webpack -- --env.mode production",
"dev": "npm run webpack-dev-server -- --env.mode development --hot",
"prod:analyze": "npm run prod -- --env.presets analyze",
"prod:compress": "npm run prod -- --env.presets compress",
"prod:debug": "npm run debug -- --env.mode production",
"dev:debug": "npm run debug -- --env.mode development"
},
"repository": {
"type": "git",
"url": "git+https://github.com/hamzaalalach/js-dev-en.git"
},
"author": "Hamza Alalach",
"license": "ISC",
"bugs": {
"url": "https://github.com/hamzaalalach/js-dev-en/issues"
},
"homepage": "https://github.com/hamzaalalach/js-dev-en#readme",
"dependencies": {
"css-loader": "^3.5.3",
"file-loader": "^6.0.0",
"html-webpack-plugin": "^4.3.0",
"mini-css-extract-plugin": "^0.9.0",
"url-loader": "^4.1.0",
"webpack": "^4.43.0",
"webpack-cli": "^3.3.11",
"webpack-dev-server": "^3.11.0",
"webpack-merge": "^4.2.2"
},
"devDependencies": {
"webpack-bundle-analyzer": "^3.8.0"
}
}