-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 1.21 KB
/
Copy pathpackage.json
File metadata and controls
33 lines (33 loc) · 1.21 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
{
"name": "quickstart-webpack",
"version": "1.0.0",
"description": "A scaffold project for a Webpack based webapplication, without the overhead of specific libraries.",
"main": "index.js",
"scripts": {
"build": "npm run clean && npm run lint && npm run dist",
"dist": "webpack --config webpack.prod.js",
"start": "webpack serve --config webpack.dev.js",
"clean": "del-cli dist/bundle.js dist/bundle.js.map dist/bundle.js.LICENSE.txt dist/images dist/fonts dist/static *.tgz",
"lint": "eslint ./src --ext .js,.jsx",
"lint:fix": "eslint ./src --ext .js,.jsx --fix",
"prepack": "npm run clean && npm run dist"
},
"author": "",
"license": "MIT",
"dependencies": {},
"devDependencies": {
"@babel/core": "^7.24.8",
"@babel/plugin-transform-runtime": "^7.24.7",
"@babel/preset-env": "^7.24.8",
"babel-loader": "^9.1.0",
"css-loader": "^7.1.2",
"del-cli": "^5.1.0",
"eslint": "^8.57.0",
"sass-loader": "^14.2.1",
"style-loader": "^4.0.0",
"webpack": "^5.93.0",
"webpack-cli": "^5.0.1",
"webpack-dev-server": "^5.0.4",
"webpack-merge": "^6.0.1"
}
}