generated from cbontems/astro-open-props-starter
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
80 lines (80 loc) · 2.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
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
{
"name": "astroprops",
"version": "0.9.1",
"description": "A starter blog template to build a website with Astro and Open Props",
"main": "index.js",
"scripts": {
"build": "astro build",
"commit": "cz",
"dev": "astro dev",
"start": "astro dev",
"preview": "astro preview"
},
"repository": {
"type": "git",
"url": "git+https://github.com/cbontems/astroprops.git"
},
"keywords": [
"Astro",
"Open",
"Props",
"template",
"starter",
"blog"
],
"author": "Cédric Bontems <cedric@thewebforge.dev> (https://cedricbontems.fr/)",
"license": "MIT",
"bugs": {
"url": "https://github.com/cbontems/astroprops/issues"
},
"homepage": "https://astroprops.netlify.app/",
"dependencies": {
"@astrojs/image": "0.16.9",
"@astrojs/rss": "2.4.3",
"@astrojs/sitemap": "1.3.3",
"@astrojs/solid-js": "2.2.0",
"astro": "2.5.7",
"astro-icon": "0.8.1",
"astro-robots-txt": "0.5.0",
"open-props": "1.5.8",
"postcss-import": "15.1.0",
"postcss-jit-props": "1.0.13",
"postcss-preset-env": "8.4.2",
"remark-collapse": "0.1.2",
"remark-toc": "8.0.1",
"sharp": "0.32.1",
"solid-js": "1.7.6"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "5.59.8",
"@typescript-eslint/parser": "5.59.8",
"cz-conventional-changelog": "3.3.0",
"date-fns": "2.30.0",
"eslint": "8.42.0",
"eslint-config-prettier": "8.8.0",
"eslint-plugin-astro": "0.27.1",
"eslint-plugin-jsx-a11y": "6.7.1",
"eslint-plugin-prettier": "4.2.1",
"eslint-plugin-react": "7.32.2",
"github-slugger": "2.0.0",
"lint-staged": "13.2.2",
"prettier": "2.8.8",
"prettier-plugin-astro": "0.10.0",
"simple-git-hooks": "2.8.1",
"smartypants": "0.2.2"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"lint-staged": {
"!(*.{png,jpg,jpeg,webp,xsl})": [
"prettier --plugin-search-dir=. --write"
]
},
"simple-git-hooks": {
"pre-commit": "npx lint-staged",
"preserveUnused": true
}
}