-
Notifications
You must be signed in to change notification settings - Fork 24
/
Copy pathpackage.json
31 lines (31 loc) · 1 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
{
"name": "black-hole-square",
"version": "0.0.1",
"description": "bhs",
"main": "src/index.js",
"scripts": {
"start": "webpack serve --mode development",
"build": "webpack --mode production",
"zip": "rm -rf bhs.zip && zip -r bhs.zip public && stat -c %s bhs.zip",
"deploy": "npm run build;git add public;git commit -m \"New build\";git push;git subtree push --prefix public origin gh-pages;npm run zip;"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Quinten/black-hole-square.git"
},
"author": "Quinten",
"license": "MIT",
"bugs": {
"url": "https://github.com/Quinten/black-hole-square/issues"
},
"homepage": "https://github.com/Quinten/black-hole-square#readme",
"devDependencies": {
"copy-webpack-plugin": "^9.0.1",
"html-webpack-plugin": "^5.3.2",
"inline-source-webpack-plugin": "^2.0.0",
"json-minimizer-webpack-plugin": "^3.0.0",
"webpack": "^5.48.0",
"webpack-cli": "^4.7.2",
"webpack-dev-server": "^3.11.2"
}
}