-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
30 lines (30 loc) · 985 Bytes
/
Copy pathpackage.json
File metadata and controls
30 lines (30 loc) · 985 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
25
26
27
28
29
30
{
"name": "postgis-python.com",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"start": "eleventy --serve",
"build": "eleventy",
"minify:css": "cleancss -o _site/assets/css/main.css _site/assets/css/main.css",
"minify:js": "terser _site/assets/js/main.js -o _site/assets/js/main.js --compress --mangle",
"build:prod": "eleventy && npm run minify:css && npm run minify:js",
"deploy": "npm run build:prod && wrangler deploy",
"deploy:preview": "npm run build && wrangler versions upload"
},
"keywords": [],
"author": "",
"license": "ISC",
"type": "commonjs",
"devDependencies": {
"@11ty/eleventy": "^3.1.5",
"@11ty/eleventy-plugin-syntaxhighlight": "^5.0.2",
"@quasibit/eleventy-plugin-sitemap": "^2.2.0",
"clean-css-cli": "^5.6.3",
"markdown-it": "^14.1.1",
"markdown-it-anchor": "^9.2.0",
"markdown-it-task-lists": "^2.1.1",
"terser": "^5.47.1",
"wrangler": "^4.93.0"
}
}