-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 1.22 KB
/
package.json
File metadata and controls
37 lines (37 loc) · 1.22 KB
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
{
"name": "nerdpruitt.github.io",
"version": "1.1.0",
"description": "",
"engines": {
"node": "^18"
},
"main": "sw.js",
"scripts": {
"clean": "rimraf _site",
"serve:eleventy": "ELEVENTY_ENV=development eleventy --serve",
"serve": "npm-run-all clean --parallel serve:*",
"build:css": "sass --update --style=compressed src/scss/home.scss:src/dist/css/home.css src/scss/main.scss:src/dist/css/main.css",
"build:js": "esbuild src/js/main.js --bundle --minify --outfile=src/dist/js/main.js",
"build:eleventy": "ELEVENTY_ENV=production eleventy",
"build": "run-s clean build:*"
},
"repository": {
"type": "git",
"url": "git+https://github.com/nerdpruitt/nerdpruitt.github.io.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/nerdpruitt/nerdpruitt.github.io/issues"
},
"homepage": "https://github.com/nerdpruitt/nerdpruitt.github.io#readme",
"devDependencies": {
"@11ty/eleventy": "^1.0.2",
"chokidar-cli": "^3.0.0",
"esbuild": "^0.16.12",
"npm-run-all": "^4.1.5",
"rimraf": "^3.0.2",
"sass": "^1.57.1"
}
}