-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
56 lines (56 loc) · 1.57 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
{
"name": "idg-design-system",
"version": "1.1.0",
"description": "Design system for the Inclusive Design Guide.",
"scripts": {
"build": "run-s clean eleventy",
"check-imports": "node bin/check-imports.js",
"clean": "rimraf dist",
"dev": "eleventy --serve --quiet",
"eleventy": "eleventy",
"dist": "run-s check-imports build",
"lint": "run-s lint:*",
"lint:css": "stylelint \"**/*.css\"",
"lint:js": "eslint \"**/*.js\"",
"lint:markdown": "markdownlint-cli2 \"**/*.md\"",
"prepare": "husky install",
"prepublishOnly": "npm run dist",
"start": "run-s clean dev"
},
"keywords": [
"atomic design",
"design tokens",
"design system",
"eleventy"
],
"author": "OCAD University <[email protected]>",
"license": "BSD-3-Clause",
"dependencies": {
"@11ty/eleventy": "2.0.1",
"@11ty/eleventy-plugin-syntaxhighlight": "5.0.0",
"html-prettify": "1.0.7",
"require-glob": "4.1.0"
},
"devDependencies": {
"@commitlint/cli": "17.7.1",
"@commitlint/config-conventional": "17.7.0",
"browserslist": "4.21.10",
"chalk": "4.1.2",
"eslint-config-fluid": "2.1.1",
"husky": "8.0.3",
"lightningcss": "1.21.8",
"lint-staged": "14.0.1",
"markdownlint-cli2": "0.9.2",
"markdownlint-config-fluid": "0.1.5",
"npm-run-all": "4.1.5",
"progress": "2.0.3",
"rimraf": "5.0.1",
"stylelint-config-fluid": "1.0.0",
"stylelint-use-logical-spec": "5.0.0"
},
"lint-staged": {
"*.css": "stylelint --fix",
"*.js": "eslint --fix",
"*.md": "markdownlint-cli2 --fix"
}
}