-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
36 lines (36 loc) · 1.02 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
{
"name": "vellum-book",
"version": "0.2.2",
"author": {
"name": "Your Name",
"email": "you@example.com",
"url": "https://example.com/"
},
"scripts": {
"build": "npx @11ty/eleventy",
"clean": "rimraf _site",
"start": "npx @11ty/eleventy --serve --quiet",
"predeploy": "npm run clean && npm run build && npm run test",
"deploy": "gh-pages -d dist -b gh-pages -t",
"lint": "npx prettier . --check && npx stylelint 'assets/styles/**/*.css'",
"lint:fix": "npx prettier . --write",
"test": "npm run lint && htmlhint _site/**/*.html"
},
"dependencies": {
"@grislyeye/link-preview": "^0.0.2",
"magick.css": "^1.0.6",
"normalize.css": "^8.0.1",
"vellum-doc": "^0.10.0"
},
"devDependencies": {
"@11ty/eleventy": "^2.0.1",
"cheerio": "^1.0.0-rc.12",
"gh-pages": "^6.1.1",
"htmlhint": "^1.1.4",
"markdown-it-replace-link": "^1.2.1",
"prettier": "^3.3.3",
"rimraf": "^6.0.1",
"stylelint": "^16.8.1",
"stylelint-config-standard": "^36.0.1"
}
}