-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
57 lines (57 loc) · 1.92 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
{
"name": "dxs",
"version": "1.0.0",
"description": "DAMATO Design System created by Donnie D'Amato",
"main": "index.js",
"scripts": {
"dev": "rm -rf _site && npm run compile && npm run bundle && npm run copy",
"build": "npm run dev && npm run minify",
"compile": "node ./bin/compile.js",
"bundle": "node ./bin/bundle.js",
"copy": "mkdir -p _site && cp -r root/. _site",
"minify": "npm run minify:resources && npm run minify:content",
"minify:resources": "ls-minifier --input=./_site --js-compressor=terser --css-compressor=clean-css --override",
"minify:content": "html-minifier --conservative-collapse --minify-css --minify-js --remove-comments --output-dir _site --input-dir _site --file-ext=html",
"savager:symbols": "create-symbols -i icons -o root/icons"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ddamato/dxs.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/ddamato/dxs/issues"
},
"homepage": "https://github.com/ddamato/dxs#readme",
"devDependencies": {
"@rollup/plugin-json": "^4.0.3",
"@rollup/plugin-multi-entry": "^3.0.1",
"@rollup/plugin-node-resolve": "^8.0.1",
"clean-css": "^4.2.3",
"front-matter": "^4.0.2",
"fs-extra": "^9.0.0",
"glob-fs": "^0.1.7",
"html-minifier": "^4.0.0",
"ls-minifier": "^2.0.0",
"markdown-it": "^11.0.0",
"markdown-it-collapsible": "^1.0.0",
"markdown-it-container": "^2.0.0",
"markdown-it-modify-token": "^1.0.2",
"markdown-it-prism": "^2.0.5",
"nunjucks": "^3.2.1",
"postcss": "^7.0.31",
"postcss-cli": "^7.1.1",
"postcss-nested": "^4.2.1",
"postcss-sassy-mixins": "^2.1.0",
"rollup": "^2.12.0",
"rollup-plugin-html": "^0.2.1",
"rollup-plugin-postcss": "^3.1.1",
"savager": "^1.3.5",
"sharect": "^2.0.0",
"slug": "^3.3.0",
"terser": "^4.7.0"
},
"dependencies": {}
}