-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 1.61 KB
/
package.json
File metadata and controls
43 lines (43 loc) · 1.61 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
38
39
40
41
42
43
{
"name": "poimen.github.io",
"version": "1.0.0",
"description": "Portfolio site",
"main": "",
"scripts": {
"dev:style-watch": "cross-env TAILWIND_MODE=watch tailwind -i src/assets/styles/tailwind.css -o src/assets/styles/base.css --watch",
"dev:html": "serve src",
"dev": "npm-run-all -p dev:*",
"prepublish": "cross-env NODE_ENV=production tailwindcss -i src/assets/styles/tailwind.css -o src/assets/styles/base.css",
"make:docs": "rm -rf docs && mkdir -p docs/assets/styles",
"pub:styles": "minify src/assets/styles/base.css > docs/assets/styles/base.css",
"pub:html": "minify src/index.html > docs/index.html",
"pub:images": "cp src/assets/hero.jpg docs/assets/.",
"pub:cv": "cp src/assets/Richard_Shephard_cv.pdf docs/assets/.",
"cacheb:styles": "node tools/cachebust.js ./docs/assets/styles/base.css ./docs/index.html",
"cacheb:cv": "node tools/cachebust.js ./docs/assets/Richard_Shephard_cv.pdf ./docs/index.html",
"publish": "npm-run-all --serial make:docs pub:* cacheb:*",
"postpublish": "du -h docs"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Poimen/poimen.github.io.git"
},
"author": "Richard Shephard",
"license": "GPLv3",
"bugs": {
"url": "https://github.com/Poimen/poimen.github.io/issues"
},
"homepage": "https://github.com/Poimen/poimen.github.io#readme",
"dependencies": {
"autoprefixer": "^10.4.20",
"cross-env": "^7.0.3",
"postcss": "^8.4.49",
"serve": "^14.2.4",
"tailwindcss": "^3.4.15"
},
"devDependencies": {
"eslint": "^8.23.1",
"minify": "^9.1.0",
"npm-run-all": "^4.1.5"
}
}