-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
47 lines (47 loc) · 946 Bytes
/
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
{
"scripts": {
"build": "node prepare-netlify-functions.js",
"test": "ava",
"test:watch": "ava --watch",
"prepare": "husky install"
},
"type": "module",
"private": true,
"engines": {
"node": ">=16.x",
"npm": ">=8.x"
},
"devDependencies": {
"lint-staged": "12.3.2",
"prettier": "2.5.1",
"prettier-plugin-go-template": "0.0.11"
},
"dependencies": {
"@netlify/functions": "0.10.0",
"ava": "4.3.1",
"html-to-text": "8.1.0",
"husky": "8.0.1",
"jsdom": "19.0.0",
"node-html-markdown": "1.1.3"
},
"prettier": {
"trailingComma": "es5",
"tabWidth": 2,
"semi": false,
"singleQuote": true,
"bracketSameLine": true,
"overrides": [
{
"files": [
"*.html"
],
"options": {
"parser": "go-template"
}
}
]
},
"lint-staged": {
"*.{js,mjs,cjs,json,css,html}": "prettier --write"
}
}