-
Notifications
You must be signed in to change notification settings - Fork 0
/
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": "wecount-design-system",
"version": "0.1.0",
"description": "Design system for We Count.",
"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",
"prepublishOnly": "npm run dist",
"start": "run-s clean dev"
},
"keywords": [
"atomic design",
"design tokens",
"design system",
"eleventy"
],
"author": "OCAD University <idrc@ocadu.ca>",
"license": "BSD-3-Clause",
"dependencies": {
"@11ty/eleventy": "^3.0.0-beta.1",
"@11ty/eleventy-plugin-syntaxhighlight": "^5.0.0",
"glob": "^11.0.0",
"html-prettify": "^1.0.7"
},
"devDependencies": {
"@commitlint/cli": "^19.4.1",
"@commitlint/config-conventional": "^19.4.1",
"browserslist": "^4.21.10",
"chalk": "^4.1.2",
"eslint-config-fluid": "^2.1.1",
"husky": "^9.1.5",
"lightningcss": "^1.21.8",
"lint-staged": "^15.0.0",
"markdownlint-cli2": "^0.14.0",
"markdownlint-config-fluid": "^0.1.5",
"npm-run-all2": "^7.0.0",
"progress": "^2.0.3",
"rimraf": "^6.0.0",
"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"
}
}