-
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) · 783 Bytes
/
Copy pathpackage.json
File metadata and controls
24 lines (24 loc) · 783 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
{
"name": "marksy-io",
"version": "1.0.0",
"description": "",
"main": "home.js",
"scripts": {
"dev": "astro dev",
"build": "astro build",
"preview": "astro preview",
"build:js": "uglifyjs 'webstart/src/home.js' --compress --mangle --output './webstart/home.min.js'",
"build:css": "uglifycss 'webstart/src/home.css' --output './webstart/home.min.css' && uglifycss './webstart/src/darkmode.css' --output './webstart/darkmode.min.css'",
"build:webstart": "yarn build:js && yarn build:css",
"dev:webstart": "yarn http-server ./webstart"
},
"author": "",
"license": "ISC",
"devDependencies": {
"astro": "7.0.6",
"http-server": "^14.1.1",
"uglify-js": "^3.19.3",
"uglifycss": "^0.0.29"
},
"packageManager": "yarn@4.12.0"
}