-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
28 lines (28 loc) · 1.33 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
{
"name": "opal",
"version": "0.0.2",
"scripts": {
"start": "node index.js",
"format": "prettier --write .",
"compile": "prettier --write ./src && sass --style=compressed src/css:dist/css && tsc && rm dist/js/bundle.js && terser dist/js/*.js --compress --mangle --output dist/js/bundle.js && rm dist/index.html && rm dist/404.html && html-minifier-terser --collapse-whitespace --remove-comments --remove-redundant-attributes --use-short-doctype --remove-empty-attributes --remove-script-type-attributes --remove-style-link-type-attributes src/index.html -o dist/index.html && html-minifier-terser --collapse-whitespace --remove-comments --remove-redundant-attributes --use-short-doctype --remove-empty-attributes --remove-script-type-attributes --remove-style-link-type-attributes src/404.html -o dist/404.html"
},
"dependencies": {
"@mercuryworkshop/bare-as-module3": "^2.2.2",
"@mercuryworkshop/bare-mux": "^2.0.3",
"@mercuryworkshop/epoxy-transport": "^2.1.3",
"@titaniumnetwork-dev/ultraviolet": "^3.2.6",
"@tomphttp/bare-server-node": "2.0.3",
"express": "^4.18.2",
"wisp-server-node": "^1.1.3"
},
"type": "module",
"devDependencies": {
"autoprefixer": "^10.4.19",
"html-minifier-terser": "^7.2.0",
"postcss": "^8.4.39",
"postcss-cli": "^11.0.0",
"sass": "^1.77.8",
"terser": "^5.31.3",
"typescript": "^5.5.4"
}
}