This repository has been archived by the owner on Oct 27, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
52 lines (52 loc) · 1.76 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
{
"name": "astro-website",
"version": "4.4.4",
"repository": {
"type": "git",
"url": "https://github.com/RocketCommunicationsInc/astro-uxds"
},
"description": "Generates the public facing Astro UX Guidelines.",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "run-p -l start:*",
"start:clean": "rimraf _site",
"start:search": "node ./_includes/search_config/search-generator.js",
"start:scss": "node-sass -rw scss -o css",
"start:eleventy": "eleventy --serve",
"build": "run-s -l build:*",
"build:clean": "rimraf _site",
"build:search": "node ./_includes/search_config/search-generator.js",
"build:scss": "node-sass -r scss -o css --output-style compressed",
"build:eleventy": "eleventy",
"prepare": "husky install",
"prettier": "prettier --write --loglevel warn .",
"pretty-quick": "pretty-quick --staged"
},
"keywords": [],
"author": "",
"license": "SEE LICENSE IN LICENSE.md",
"devDependencies": {
"@11ty/eleventy": "^0.10.0",
"clean-css": "^4.2.1",
"gulp": "^4.0.2",
"gulp-imagemin": "^6.2.0",
"gulp-rename": "^2.0.0",
"husky": "^6.0.0",
"list-stream": "^2.0.0",
"markdown-it-anchor": "^5.2.5",
"markdown-it-container": "^2.0.0",
"markdown-it-div": "^1.1.0",
"markdown-it-implicit-figures": "^0.9.0",
"markdown-json": "^1.4.1",
"node-sass": "^4.14.1",
"npm-run-all": "^4.1.5",
"prettier": "^2.2.1",
"pretty-quick": "^3.1.0",
"rimraf": "^3.0.2"
},
"dependencies": {
"fuse.js": "^3.4.6",
"nodemon": "^2.0.2"
}
}