-
Notifications
You must be signed in to change notification settings - Fork 9
/
package.json
36 lines (36 loc) · 1.11 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
{
"name": "hololive-fusion-generator",
"scripts": {
"test": "jest --verbose",
"build": "webpack --config ./webpack/webpack.prod.js",
"build:dev": "webpack --config ./webpack/webpack.dev.js",
"postbuild": "copy CNAME dist",
"dev": "webpack serve --config ./webpack/webpack.dev.js --host 0.0.0.0",
"deploy": "npm run build && npm run postbuild && gh-pages --dist ./dist --message a --no-history"
},
"repository": {
"type": "git",
"url": "https://github.com/vaexenc/hololive-fusion-generator.git"
},
"private": true,
"dependencies": {
"copy-webpack-plugin": "^10.2.1",
"css-loader": "^6.5.1",
"css-minimizer-webpack-plugin": "^3.4.1",
"gh-pages": "^3.2.3",
"html-inline-css-webpack-plugin": "^1.11.1",
"html-webpack-plugin": "^5.5.0",
"mini-css-extract-plugin": "^2.5.2",
"no-darkreader": "^1.0.1",
"val-loader": "^3.1.0",
"webpack": "^5.67.0",
"webpack-cli": "^4.9.1",
"webpack-merge": "^5.8.0"
},
"devDependencies": {
"eslint": "^7.22.0",
"eslint-plugin-jest": "^24.3.2",
"jest": "^26.6.3",
"webpack-dev-server": "^4.7.3"
}
}