-
-
Notifications
You must be signed in to change notification settings - Fork 12
/
package.json
40 lines (40 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
{
"private": true,
"name": "boilerplate-webpack-babel",
"version": "1.2.1",
"description": "Starter with Webpack & Babel.js",
"license": "MIT",
"author": {
"name": "Piotr Kowalski",
"email": "[email protected]",
"url": "https://piecioshka.pl"
},
"scripts": {
"clear": "rm -rf dist/",
"clear:all": "rm -rf node_modules/ && npm run clear",
"prebuild": "npm run clear",
"build": "npm run build:development",
"build:development": "webpack --config webpack/builds/webpack.config.dev.js --env addons=copyStatic",
"build:production": "webpack --config webpack/builds/webpack.config.prod.js --env addons=copyStatic",
"watch": "npm run build:development -- -w",
"start": "http-server dist/ -c-1",
"dev": "webpack-dev-server --config webpack/builds/webpack.config.dev.js --env addons=copyStatic"
},
"devDependencies": {
"@babel/core": "^7.26.0",
"@babel/preset-env": "^7.26.0",
"babel-loader": "^9.2.1",
"copy-webpack-plugin": "^12.0.2",
"file-loader": "^6.2.0",
"http-server": "^14.1.1",
"webpack": "^5.96.1",
"webpack-bundle-analyzer": "^4.10.2",
"webpack-cli": "^5.1.4",
"webpack-dev-server": "^4.15.1",
"webpack-merge": "^5.10.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/piecioshka/boilerplate-webpack-babel.git"
}
}