-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
35 lines (35 loc) · 1.07 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
{
"name": "webpack-starter-kit",
"version": "1.0.0",
"description": "A minimalistic Webpack template with ESLint and Prettier configuration.",
"private": true,
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "webpack serve --open --config webpack.dev.js",
"prodbuild": "webpack --config webpack.prod.js",
"build": "webpack --config webpack.dev.js",
"lint": "eslint src/**/*.js",
"format": "prettier --write \"src/**/*.{js,css,json}\"",
"check-format": "prettier --check \"src/**/*.{js,css,json}\""
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"css-loader": "^7.1.2",
"eslint": "^8.57.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-import": "^2.30.0",
"html-webpack-plugin": "^5.6.0",
"prettier": "3.3.3",
"style-loader": "^4.0.0",
"webpack": "^5.94.0",
"webpack-cli": "^5.1.4",
"webpack-dev-server": "^5.1.0",
"webpack-merge": "^6.0.1"
},
"dependencies": {
"leaflet": "^1.9.4"
}
}