This repository has been archived by the owner on Jul 8, 2023. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 132
/
package.json
87 lines (87 loc) · 3.05 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
85
86
87
{
"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:get-benchmarks": "node src/scripts/downloadBenchmarks.js",
"build": "npm run build:cleanup && npm run build:create-temp-folder && npm run build:get-releases && npm run build:process-releases && npm run build:get-benchmarks && 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:data": "node __tests__/organisations-data",
"test": "npm run test:lint && npm run test:images && npm run test:data",
"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": {
"@metalsmith/collections": "^1.2.2",
"@metalsmith/markdown": "^1.6.0",
"@metalsmith/permalinks": "^2.4.0",
"async": "^3.2.4",
"axios": "^0.27.2",
"clone": "^2.1.2",
"compare-versions": "^5.0.1",
"debug": "^4.3.4",
"js-yaml": "^4.1.0",
"marked": "^4.1.0",
"metalsmith": "^2.5.0",
"metalsmith-clean-css": "^6.1.3",
"metalsmith-contenthash": "^0.2.1",
"metalsmith-debug": "^1.2.0",
"metalsmith-html-minifier": "^4.0.1",
"metalsmith-layouts": "^1.8.1",
"metalsmith-sass": "^2.0.0",
"metalsmith-writemetadata": "^0.4.5",
"mkdirp": "^1.0.4",
"multimatch": "^5.0.0",
"nunjucks": "^3.2.4",
"nunjucks-markdown-filter": "^0.1.0",
"parse-link-header": "^2.0.0",
"rimraf": "^3.0.2",
"svgo": "^2.8.0",
"unzip-stream": "^0.3.1"
},
"devDependencies": {
"bulma": "^0.9.4",
"chalk": "^4.1.2",
"chokidar-cli": "^3.0.0",
"concurrently": "^5.3.0",
"eslint": "^8.23.0",
"eslint-config-standard": "^17.0.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-n": "^15.2.5",
"eslint-plugin-promise": "^6.0.1",
"gh-pages": "^4.0.0",
"glob": "^8.0.3",
"js-yaml": "^4.1.0",
"live-server": "^1.2.2",
"node-sass": "^7.0.1",
"standard": "^17.0.0",
"xml2js": "^0.5.0"
}
}