forked from fastify/website-metalsmith
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
89 lines (89 loc) · 3.12 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
88
89
{
"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": {
"async": "^3.2.2",
"axios": "^0.21.2",
"clean-css": "^5.0.1",
"clone": "^2.1.2",
"compare-versions": "^3.6.0",
"debug": "^4.3.1",
"js-yaml": "^4.0.0",
"lodash": "^4.17.21",
"marked": "^4.0.10",
"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",
"multimatch": "^5.0.0",
"nunjucks": "^3.2.3",
"nunjucks-markdown-filter": "^0.1.0",
"parse-link-header": "^2.0.0",
"rimraf": "^3.0.2",
"svgo": "^1.3.2",
"unzip-stream": "^0.3.1"
},
"devDependencies": {
"bulma": "^0.9.2",
"chalk": "^4.1.0",
"chokidar-cli": "^2.1.0",
"concurrently": "^5.3.0",
"eslint": "^7.20.0",
"eslint-config-standard": "^16.0.2",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^4.3.1",
"eslint-plugin-standard": "^5.0.0",
"gh-pages": "^3.2.3",
"glob": "^7.1.6",
"live-server": "^1.2.1",
"node-sass": "^6.0.0",
"xml2js": "^0.4.23",
"js-yaml": "^4.1.0"
}
}