-
Notifications
You must be signed in to change notification settings - Fork 34
/
package.json
72 lines (72 loc) · 2.59 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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
{
"name": "asyncjs-static-site",
"private": true,
"version": "1.0.0",
"description": "Async Static Site",
"scripts": {
"clean": "rm -rf ./dist/",
"copy:images": "cpr ./_assets/images/ ./dist/img/",
"copy:wp-files": "cpr ./_assets/wp/ ./dist/wp/",
"build:js": "esbuild ./_assets/scripts/main.js ./_assets/scripts/hubbub.js --bundle --minify --sourcemap --outdir=./dist/js/",
"build:css": "postcss ./_assets/styles/global.css -o ./dist/css/global.css",
"build:site": "node metalsmith.js",
"build": "npm-run-all clean copy:* build:*",
"test": "npm-run-all build",
"reload": "browser-sync reload",
"browser": "browser-sync start -s \"./dist/\" -f \"./dist/js/*\" \"./dist/css/*\" --no-open",
"watch:js": "npm run build:js -- --watch",
"watch:css": "npm run build:css -- --watch",
"watch:site": "chokidar \"_pages/**/*\" \"_posts/**/*\" \"_layouts/**/*\" \"_includes/partials/**/*\" -c \"npx npm-run-all build:site reload\"",
"watch": "npm-run-all --parallel browser watch:*",
"start": "npm-run-all build watch"
},
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/asyncjs/asyncjs.github.com.git"
},
"author": "humans.txt",
"license": "MIT",
"bugs": {
"url": "https://github.com/asyncjs/asyncjs.github.com/issues"
},
"homepage": "https://asyncjs.com/",
"devDependencies": {
"@metalsmith/collections": "^1.3.0",
"@metalsmith/drafts": "^1.3.0",
"@metalsmith/excerpts": "^1.5.1",
"@metalsmith/in-place": "^5.0.0",
"@metalsmith/layouts": "^2.7.0",
"@metalsmith/markdown": "^1.10.0",
"@metalsmith/permalinks": "^3.1.0",
"autoprefixer": "^10.4.20",
"browser-sync": "^3.0.3",
"chokidar-cli": "^3.0.0",
"cpr": "^3.0.1",
"cssnano": "^7.0.6",
"esbuild": "^0.24.0",
"graceful-fs": "^4.2.11",
"isobject": "^4.0.0",
"jstransformer-handlebars": "^1.2.0",
"marked": "^15.0.0",
"metalsmith": "^2.6.3",
"metalsmith-build-date": "^0.2.0",
"metalsmith-collections-archive": "^1.1.2",
"metalsmith-collections-offset": "^1.0.1",
"metalsmith-discover-partials": "^0.1.2",
"metalsmith-feed": "^1.0.0",
"metalsmith-metadata-in-filename": "^1.3.0",
"metalsmith-more": "^0.2.0",
"metalsmith-redirect": "^3.1.0",
"metalsmith-register-helpers": "^0.4.1",
"metalsmith-sitemap": "^1.2.2",
"metalsmith-tags": "^2.1.0",
"moment": "^2.30.1",
"npm-run-all": "^4.1.5",
"postcss": "^8.4.49",
"postcss-cli": "^11.0.0",
"postcss-import": "^16.1.0",
"postcss-preset-env": "^10.1.0",
"striptags": "^3.2.0",
"tailwindcss": "^3.4.15"
}
}