-
Notifications
You must be signed in to change notification settings - Fork 21
/
Copy pathpackage.json
36 lines (36 loc) · 1.09 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
{
"scripts": {
"build": "webpack",
"clean": "rm -rf assets/build/js/*.js assets/build/css/*.css assets/build/js/*.map assets/build/css/*.map assets/build/css/*.js",
"fix:md": "markdownlint 'docs/**/*.md' --config .markdownlint.json --fix",
"lint:md": "markdownlint 'docs/**/*.md' --config .markdownlint.json",
"prepare": "husky",
"sort-package-json": "sort-package-json",
"watch": "webpack --watch"
},
"dependencies": {
"md5": "^2.3.0"
},
"devDependencies": {
"@babel/core": "^7.25.8",
"@babel/preset-env": "^7.25.8",
"@babel/preset-react": "^7.25.7",
"babel-loader": "^9.2.1",
"css-loader": "^7.1.2",
"css-minimizer-webpack-plugin": "^7.0.0",
"husky": "^9.1.7",
"markdownlint-cli": "^0.39.0",
"mini-css-extract-plugin": "^2.9.1",
"sass": "^1.79.5",
"sass-loader": "^16.0.2",
"sort-package-json": "^2.14.0",
"terser-webpack-plugin": "^5.3.10",
"webpack": "^5.95.0",
"webpack-cli": "^5.1.4",
"webpack-fix-style-only-entries": "^0.6.1"
},
"engines": {
"node": ">=20.15.1",
"npm": ">=10.8.1"
}
}