-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
28 lines (28 loc) · 562 Bytes
/
package.json
File metadata and controls
28 lines (28 loc) · 562 Bytes
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
{
"name": "accessible-colour-grid",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"start": "node ./index.js",
"prepare": "husky install"
},
"keywords": [],
"author": "",
"license": "MIT",
"type": "module",
"dependencies": {
"dotenv": "^17.4.2",
"express": "^5.2.1",
"nunjucks": "^3.2.4",
"wcag-contrast": "^3.0.0"
},
"devDependencies": {
"husky": "^9.1.7",
"lint-staged": "^16.4.0",
"prettier": "^3.8.1"
},
"lint-staged": {
"*.{js,css,md}": "prettier --write"
}
}