forked from inclusive-design/wecount.inclusivedesign.ca
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
79 lines (79 loc) · 2.59 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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
{
"name": "@wecount/wecount.inclusivedesign.ca",
"version": "2.4.0",
"description": "The source files for the We Count website, built with Eleventy.",
"license": "BSD-3-Clause",
"author": "OCAD University <[email protected]>",
"contributors": [
"Cindy Li <[email protected]> (https://github.com/cindyli)",
"Justin Obara <[email protected]> (https://github.com/jobara)",
"Ted Thompson <[email protected]> (https://github.com/TeddTech)",
"Ned Zimmerman <[email protected]> (https://github.com/greatislander)"
],
"private": true,
"scripts": {
"build": "npm run clean && eleventy --config=eleventy.config.js",
"clean": "rimraf dist",
"start": "npm run clean && ELEVENTY_ENV=development eleventy --serve --port=3000 --config=eleventy.config.js",
"lint:css": "stylelint src/scss/**/*.scss",
"lint:js": "eslint \"**/*.js\"",
"lint:md": "markdownlint \"**/***.md\" --ignore-path .gitignore --ignore LICENSE.md",
"lint": "run-s lint:*",
"lint-fix:css": "stylelint src/scss/**/*.scss --fix",
"lint-fix:js": "eslint \"**/*.js\" --fix",
"lint-fix:md": "markdownlint \"**/***.md\" --ignore-path .gitignore --ignore LICENSE.md --fix",
"lint-fix": "npm-run-all lint-fix:*",
"release:major": "release major",
"release:minor": "release minor",
"release:patch": "release patch"
},
"dependencies": {
"@11ty/eleventy": "^0.11.0",
"@11ty/eleventy-plugin-rss": "^1.1.0",
"airtable": "^0.10.0",
"eleventy-plugin-pwa": "^1.0.8",
"eleventy-plugin-sass": "^1.1.1",
"infusion": "^3.0.0-dev.20210223T161058Z.1743e0020.FLUID-6580",
"nodemailer": "^6.4.18",
"sanitize.css": "^12.0.1",
"uuid": "^8.3.2"
},
"devDependencies": {
"@commitlint/cli": "^12.0.0",
"@commitlint/config-conventional": "^12.0.0",
"@tbranyen/jsdom": "^13.0.0",
"autoprefixer": "^10.2.4",
"axios": "^0.21.1",
"eleventy-plugin-error-overlay": "^0.1.2",
"eslint": "^7.20.0",
"html-minifier": "^4.0.0",
"husky": "^5.1.1",
"lint-staged": "^10.5.4",
"markdown-it": "^12.0.4",
"markdownlint-cli": "^0.26.0",
"npm-run-all": "^4.1.5",
"release": "^6.3.0",
"rimraf": "^3.0.2",
"stylelint": "^13.11.0",
"stylelint-config-standard-scss": "^1.1.0",
"stylelint-order": "^4.1.0",
"stylelint-scss": "^3.19.0"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged",
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
},
"lint-staged": {
"*.js": [
"eslint"
],
"*.scss": [
"stylelint"
],
"*.md": [
"markdownlint --ignore LICENSE.md --ignore .github/**/*.md"
]
}
}