forked from ixartz/Astro-boilerplate
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
62 lines (62 loc) · 1.9 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
{
"name": "astro-boilerplate",
"version": "1.0.0",
"private": true,
"scripts": {
"dev": "astro dev",
"start": "astro dev",
"build": "astro build",
"preview": "astro preview",
"clean": "rimraf dist",
"lint": "eslint --ext .js,.jsx,.ts,.tsx,.astro .",
"build-types": "tsc --noEmit --pretty",
"prepare": "husky install"
},
"devDependencies": {
"@astrojs/react": "^3.0.7",
"@astrojs/rss": "^0.2.2",
"@astrojs/sitemap": "^0.1.2",
"@astrojs/tailwind": "^5.0.3",
"@commitlint/cli": "^17.8.1",
"@commitlint/config-conventional": "^17.8.1",
"@jridgewell/sourcemap-codec": "^1.4.15",
"@tailwindcss/aspect-ratio": "^0.4.2",
"@tailwindcss/typography": "^0.5.10",
"@types/react": "^18.2.42",
"@typescript-eslint/eslint-plugin": "^5.62.0",
"@typescript-eslint/parser": "^5.62.0",
"astro": "4.0.2",
"astro-eslint-parser": "^0.16.0",
"astro-imagetools": "^0.6.17",
"astro-robots-txt": "^0.3.12",
"eslint": "^8.55.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-airbnb-typescript": "^17.1.0",
"eslint-config-prettier": "^8.10.0",
"eslint-plugin-import": "^2.29.0",
"eslint-plugin-jsx-a11y": "^6.8.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-react": "^7.33.2",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-simple-import-sort": "^7.0.0",
"eslint-plugin-tailwindcss": "^3.13.0",
"eslint-plugin-unused-imports": "^2.0.0",
"husky": "^8.0.3",
"lint-staged": "^12.5.0",
"path-browserify": "^1.0.1",
"prettier": "^2.6.2",
"prettier-plugin-astro": "0.1.0-next.5",
"rimraf": "^5.0.5",
"tailwindcss": "^3.3.6"
},
"dependencies": {
"astro-boilerplate-components": "^1.0.16",
"date-fns": "^2.30.0",
"react": "^18.2.0",
"react-dom": "^18.2.0"
},
"volta": {
"node": "16.15.1"
},
"author": "Ixartz (https://github.com/ixartz)"
}