-
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) · 1.03 KB
/
package.json
File metadata and controls
30 lines (30 loc) · 1.03 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
{
"name": "slapthink.net",
"version": "1.0.0",
"description": "Personal developer website",
"private": true,
"scripts": {
"build": "NODE_ENV=production npm-run-all --sequential prod:*",
"start": "export BRANCH=$(git rev-parse --symbolic-full-name --abbrev-ref HEAD); npm run clean && npm-run-all --parallel dev:*",
"prod:eleventy": "ELEVENTY_ENV=production npx @11ty/eleventy",
"prod:js": "npm run build:js",
"dev:js": "webpack --mode development --watch --progress",
"dev:eleventy": "ELEVENTY_ENV=development npx @11ty/eleventy --watch --quiet --serve",
"build:js": " webpack --mode production",
"clean": "rm -rf _site/*"
},
"author": "",
"license": "ISC",
"dependencies": {
"@11ty/eleventy": "^3.0.0",
"@11ty/eleventy-img": "^6.0.0",
"@11ty/eleventy-navigation": "^1.0.0",
"@csstools/normalize.css": "^12.1.1",
"browserslist": "^4.0.0",
"cssnano": "^7.0.0",
"lightningcss": "^1.0.0",
"npm-run-all": "^4.1.5",
"webpack": "^5.99.5",
"webpack-cli": "^6"
}
}