-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
25 lines (25 loc) · 782 Bytes
/
package.json
File metadata and controls
25 lines (25 loc) · 782 Bytes
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
{
"devDependencies": {
"@eslint/js": "^9.35.0",
"css-loader": "^7.1.2",
"eslint": "^9.35.0",
"globals": "^16.3.0",
"html-loader": "^5.1.0",
"html-webpack-plugin": "^5.6.3",
"prettier": "3.6.2",
"style-loader": "^4.0.0",
"webpack": "^5.98.0",
"webpack-cli": "^6.0.1",
"webpack-dev-server": "^5.2.1",
"webpack-merge": "^6.0.1"
},
"scripts": {
"start": "webpack serve --open --config webpack.dev.js",
"build": "webpack --config webpack.prod.js",
"dev": "webpack serve --config webpack.dev.js",
"deploy": "git subtree push --prefix dist origin gh-pages",
"prettier": "npm install --save-dev --save-exact prettier",
"eslint": "eslint src/index.js",
"installESLint": "npm init @eslint/config@latest"
}
}