-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
43 lines (43 loc) · 1.22 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
37
38
39
40
41
42
43
{
"name": "sysadminday",
"version": "1.0.0",
"type": "module",
"private": true,
"description": "Microsite for sysadminday.digitalocean.com (and sysadmin.love)",
"main": "dist/before.html",
"engines": {
"node": "20.9.0"
},
"scripts": {
"build": "node src/build.js",
"dev": "nodemon -e html,scss,js,svg --watch src --exec \"npm run dev:build && npm run dev:serve\"",
"dev:build": "BASE_URL=\"${BASE_URL:-http://127.0.0.1:8080}\" npm run build",
"dev:serve": "http-server -p 8080 dist"
},
"author": "DigitalOcean",
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "git+https://github.com/do-community/sysadminday.git"
},
"bugs": {
"url": "https://github.com/do-community/sysadminday/issues"
},
"homepage": "https://github.com/do-community/sysadminday#readme",
"devDependencies": {
"cssnano": "^6.0.3",
"esbuild": "^0.19.11",
"htmlnano": "^2.1.0",
"http-server": "^14.1.1",
"nodemon": "^3.0.3",
"postcss": "^8.4.33",
"postcss-url": "^10.1.3",
"posthtml": "^0.16.6",
"posthtml-include": "^1.7.4",
"posthtml-insert-at": "^0.2.7",
"recursive-copy": "^2.0.14",
"sass": "^1.69.7",
"svgo": "^3.2.0",
"terser": "^5.26.0"
}
}