-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
24 lines (24 loc) · 802 Bytes
/
package.json
File metadata and controls
24 lines (24 loc) · 802 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
{
"devDependencies": {
"css-loader": "^7.1.2",
"css-minimizer-webpack-plugin": "^7.0.2",
"html-loader": "^5.1.0",
"html-webpack-plugin": "^5.6.4",
"style-loader": "^4.0.0",
"webpack": "^5.102.1",
"webpack-cli": "^6.0.1",
"webpack-dev-server": "^5.2.2",
"webpack-merge": "^6.0.1"
},
"scripts": {
"build": "webpack --config webpack.prod.js",
"dev": "webpack serve --config webpack.dev.js",
"clean": "rm -rf dist/",
"predeploy": "git checkout gh-pages && git merge master --no-edit; webpack --config webpack.prod.js",
"deploy": "git add dist -f && git commit -m \"Deployment commit\"; git subtree push --prefix dist origin gh-pages",
"postdeploy": "rm -rf dist/; git checkout master"
},
"dependencies": {
"animejs": "^4.2.2"
}
}