-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
44 lines (44 loc) · 1.06 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
{
"name": "avocadotoast.live",
"version": "1.0.0",
"description": "",
"private": true,
"scripts": {
"build": "eleventy",
"start": "eleventy --serve",
"test": "echo \"Error: no test specified\" && exit 1",
"postinstall": "fn() { if [ \"$NETLIFY\" != 'true' ]; then husky install; fi; }; fn"
},
"repository": {
"type": "git",
"url": "git+https://github.com/CatChen/avocadotoast.live.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/CatChen/avocadotoast.live/issues"
},
"homepage": "https://github.com/CatChen/avocadotoast.live#readme",
"devDependencies": {
"husky": "8",
"prettier": "3.1.0",
"pretty-quick": "^3.1.3"
},
"prettier": {
"arrowParens": "always",
"bracketSpacing": true,
"bracketSameLine": false,
"semi": true,
"singleQuote": true,
"tabWidth": 2,
"trailingComma": "all"
},
"dependencies": {
"@11ty/eleventy": "^2.0.1",
"axios": "^1.6.2",
"dotenv": "^16.3.1",
"rss-parser": "^3.13.0",
"sharp": "^0.32.5"
}
}