forked from fastify/website-metalsmith
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
84 lines (84 loc) · 2.87 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
73
74
75
76
77
78
79
80
81
82
83
84
{
"name": "fastify-website",
"version": "1.0.0",
"description": "A static website builder for Fastify using metalsmith",
"scripts": {
"build:cleanup": "rimraf build-temp",
"build:create-temp-folder": "mkdirp build-temp",
"build:get-releases": "node src/scripts/downloadReleases.js fastify/fastify build-temp/releases v1.13.0",
"build:process-releases": "node src/scripts/processReleases.js build-temp/releases src/website",
"build:website": "node src/scripts/buildWebsite.js",
"build:website:watch": "npm run build:website && chokidar 'src/website' -c 'npm run build:website'",
"build": "npm run build:cleanup && npm run build:create-temp-folder && npm run build:get-releases && npm run build:process-releases && npm run build:website",
"deploy": "gh-pages -d build --dotfiles",
"test:lint": "eslint src --ignore-pattern 'src/website/content/'",
"test:images": "node __tests__/organisations-images",
"test": "npm run test:lint && npm run test:images",
"start:dev": "npm run build && concurrently \"npm run build:website:watch\" \"live-server build\"",
"start:server": "live-server build",
"start": "npm run build && npm run start:server"
},
"repository": {
"type": "git",
"url": "git+https://github.com/fastify/website.git"
},
"keywords": [
"Builder",
"Static website",
"Website",
"Fastify",
"Metalsmith",
"Automation"
],
"author": "Luciano Mammino",
"license": "MIT",
"bugs": {
"url": "https://github.com/fastify/website/issues"
},
"homepage": "https://github.com/fastify/website#readme",
"dependencies": {
"async": "^3.2.0",
"axios": "^0.19.2",
"clean-css": "^4.2.3",
"clone": "^2.1.2",
"compare-versions": "^3.6.0",
"debug": "^4.1.1",
"js-yaml": "^3.14.0",
"lodash": "^4.17.15",
"metalsmith": "^2.3.0",
"metalsmith-clean-css": "^6.1.3",
"metalsmith-collections": "^0.9.0",
"metalsmith-contenthash": "^0.2.1",
"metalsmith-debug": "^1.2.0",
"metalsmith-html-minifier": "^4.0.1",
"metalsmith-layouts": "^1.8.1",
"metalsmith-markdown": "^1.3.0",
"metalsmith-permalinks": "^2.2.0",
"metalsmith-sass": "^1.7.0",
"metalsmith-writemetadata": "^0.4.5",
"mkdirp": "^1.0.4",
"node-sass": "^4.14.1",
"nunjucks": "^3.2.1",
"nunjucks-markdown-filter": "^0.1.0",
"parse-link-header": "^1.0.1",
"rimraf": "^3.0.2",
"svgo": "^1.3.2",
"unzip-stream": "^0.3.0"
},
"devDependencies": {
"bulma": "^0.8.2",
"chalk": "^4.0.0",
"chokidar-cli": "^2.1.0",
"concurrently": "^5.2.0",
"eslint": "^7.1.0",
"eslint-config-standard": "^14.1.1",
"eslint-plugin-import": "^2.20.2",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-standard": "^4.0.1",
"gh-pages": "^3.0.0",
"glob": "^7.1.6",
"live-server": "^1.2.1",
"xml2js": "^0.4.23"
}
}