forked from ceph/ceph.io
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
83 lines (83 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
73
74
75
76
77
78
79
80
81
82
83
{
"name": "ceph.io",
"version": "1.0.0",
"description": "Static site for www.ceph.io",
"scripts": {
"assets": "node scripts/images.js",
"css": "postcss src/css/main.css --output dist/css/main.css",
"js": "rollup --config",
"site": "npx eleventy",
"clean": "rimraf dist",
"start": "npm run dev",
"dev": "cross-env NODE_ENV=development npm-run-all clean --parallel 'site -- --serve' 'css -- --watch' 'js -- --watch' assets",
"build": "npm-run-all clean --parallel site css js assets",
"build:development": "cross-env NODE_ENV=development npm run build",
"build:production": "cross-env NODE_ENV=production npm run build",
"debug": "cross-env DEBUG=* npx eleventy",
"prettier": "prettier \"**/*.+(js|json|css|md|html)\"",
"format": "npm run prettier -- --write",
"prepare": "husky install"
},
"browserslist": [
"last 2 versions",
"> 1%"
],
"repository": {
"type": "git",
"url": "git+https://github.com/ceph/ceph.io.git"
},
"author": "SoftIron Limited <[email protected]> (https://softiron.com)",
"contributors": [
"Adam Duncan <[email protected]>"
],
"bugs": {
"url": "https://github.com/ceph/ceph.io/issues"
},
"homepage": "https://github.com/ceph/ceph.io#readme",
"license": "CC-BY-SA-3.0",
"devDependencies": {
"@11ty/eleventy": "0.11.1",
"@11ty/eleventy-navigation": "0.1.6",
"@babel/core": "^7.13.8",
"@babel/preset-env": "^7.13.9",
"@fullhuman/postcss-purgecss": "^3.0.0",
"@quasibit/eleventy-plugin-sitemap": "^2.1.4",
"@rollup/plugin-babel": "^5.3.0",
"@rollup/plugin-commonjs": "^17.1.0",
"@rollup/plugin-node-resolve": "^11.2.0",
"chalk": "^4.1.1",
"core-js": "^3.9.1",
"cpy": "8.1.1",
"cross-env": "7.0.2",
"cssnano": "^4.1.10",
"eleventy-plugin-i18n": "0.1.0",
"html-minifier": "^4.0.0",
"husky": "^6.0.0",
"imagemin": "^7.0.1",
"imagemin-gifsicle": "^7.0.0",
"imagemin-mozjpeg": "^9.0.0",
"imagemin-pngquant": "^9.0.0",
"imagemin-svgo": "^8.0.0",
"lint-staged": "^11.0.0",
"lodash.chunk": "^4.2.0",
"markdown-it": "^12.0.6",
"markdown-it-anchor": "^7.1.0",
"npm-run-all": "^4.1.5",
"postcss-cli": "^7.1.1",
"postcss-import": "^12.0.1",
"postcss-normalize": "^9.0.0",
"postcss-preset-env": "^6.7.0",
"prettier": "^2.3.1",
"rimraf": "3.0.2",
"rollup": "^2.40.0",
"rollup-plugin-terser": "^7.0.2"
},
"dependencies": {
"details-polyfill": "^1.1.0",
"focus-visible": "^5.2.0",
"lunr": "^2.3.9"
},
"lint-staged": {
"**/*.+(js|json|css|md|html)": "prettier --write"
}
}