-
Notifications
You must be signed in to change notification settings - Fork 20
/
package.json
96 lines (96 loc) · 3.31 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
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
{
"name": "@wecount/wecount.inclusivedesign.ca",
"version": "2.8.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)",
"Gregor Moss <[email protected]> (https://github.com/blueslug)",
"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-all -l clean -p build:*",
"build:eleventy": "cross-env NODE_ENV=production node --max-old-space-size=6000 ./node_modules/@11ty/eleventy/cmd.js",
"build:cms": "node ./build-cms.js",
"clean": "rimraf _site",
"cms": "decap-server",
"dev": "node --max-old-space-size=6000 ./node_modules/@11ty/eleventy/cmd.js --incremental --serve --port=3000",
"start": "npm-run-all -l clean -p start:*",
"start:cms": "node ./build-cms.js -w",
"start:eleventy": "run-p dev cms",
"serve": "npx serve _site",
"lint": "run-s -l lint:*",
"lint:styles": "stylelint \"**/*.scss\"",
"lint:scripts": "eslint \"**/*.{js,mjs,md}\"",
"lint:markdown": "markdownlint-cli2 \"**/*.md\"",
"lint:yml": "eslint \"**/*.yml\"",
"lint-fix:styles": "npm run lint:styles -- --fix",
"lint-fix:scripts": "npm run lint:scripts -- --fix",
"lint-fix:markdown": "npm run lint:markdown -- --fix",
"lint-fix:yml": "npm run lint:yml -- --fix",
"lint-fix": "run-s lint-fix:*",
"release:major": "release major",
"release:minor": "release minor",
"release:patch": "release patch",
"prepare": "husky"
},
"dependencies": {
"@11ty/eleventy": "2.0.1",
"@11ty/eleventy-img": "4.0.2",
"@11ty/eleventy-navigation": "0.3.5",
"@11ty/eleventy-plugin-rss": "2.0.2",
"airtable": "0.12.2",
"axios": "1.7.9",
"decap-cms": "3.4.0",
"eleventy-plugin-fluid": "2.7.3",
"eleventy-plugin-pwa-v2": "1.0.2",
"estrella": "1.4.1",
"html-minifier": "4.0.0",
"infusion": "4.7.1",
"linkedom": "0.18.5",
"lite-youtube-embed": "0.3.3",
"markdown-it": "14.1.0",
"modern-css-reset": "1.4.0",
"nunjucks": "3.2.4",
"uuid": "10.0.0"
},
"devDependencies": {
"@commitlint/cli": "19.6.1",
"@commitlint/config-conventional": "19.6.0",
"autoprefixer": "10.4.20",
"cross-env": "7.0.3",
"decap-server": "3.1.2",
"dotenv": "16.4.7",
"eslint": "8.57.1",
"eslint-config-fluid": "2.1.3",
"eslint-plugin-jsdoc": "50.6.1",
"eslint-plugin-markdown": "5.1.0",
"eslint-plugin-react": "7.37.2",
"eslint-plugin-yml": "1.16.0",
"husky": "9.1.7",
"lint-staged": "15.2.11",
"markdownlint-cli2": "0.14.0",
"markdownlint-config-fluid": "0.1.5",
"npm-run-all2": "6.2.6",
"release": "6.3.1",
"rimraf": "6.0.1",
"stylelint": "14.16.1",
"stylelint-config-fluid": "1.0.0",
"stylelint-config-standard-scss": "6.1.0",
"stylelint-order": "6.0.4",
"stylelint-use-logical-spec": "5.0.1",
"turndown": "7.2.0"
},
"lint-staged": {
"*.scss": "stylelint --fix",
"*.{js,mjs,yml}": "eslint --fix",
"*.md": [
"markdownlint-cli2 --fix",
"eslint --fix"
]
}
}