-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
55 lines (55 loc) · 1.78 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
{
"name": "my-portfolio",
"version": "1.0.0",
"scripts": {
"dev": "astro dev",
"start": "astro dev",
"build": "astro build",
"preview": "astro preview",
"format": "prettier --write --plugin-search-dir=. .",
"clean": "rimraf dist",
"lint:check": "eslint --no-eslintrc -c .eslintrc.js --ext .js,.jsx,.ts,.tsx,.astro,.svelte .",
"lint:fix": "eslint --no-eslintrc -c .eslintrc.js --fix --ext .js,.jsx,.ts,.tsx,.astro,.svelte .",
"build-types": "tsc --noEmit --pretty"
},
"devDependencies": {
"@astrojs/sitemap": "^1.0.1",
"@astrojs/svelte": "^2.0.1",
"@astrojs/tailwind": "^3.0.1",
"@babel/core": "^7.20.12",
"@tailwindcss/aspect-ratio": "^0.4.2",
"@tailwindcss/typography": "^0.5.9",
"@typescript-eslint/eslint-plugin": "^5.51.0",
"@typescript-eslint/parser": "^5.51.0",
"astro": "^2.0.10",
"astro-eslint-parser": "^0.11.0",
"astro-imagetools": "^0.7.6",
"astro-robots-txt": "^0.3.12",
"eslint": "^8.33.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-airbnb-typescript": "^17.0.0",
"eslint-config-prettier": "^8.6.0",
"eslint-plugin-astro": "^0.14.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-jsx-a11y": "^6.7.1",
"eslint-plugin-simple-import-sort": "^7.0.0",
"eslint-plugin-tailwindcss": "^3.8.3",
"eslint-plugin-unused-imports": "^2.0.0",
"prettier": "^2.8.4",
"prettier-plugin-astro": "^0.8.0",
"rimraf": "^3.0.2",
"sass": "^1.58.0",
"tailwindcss": "^3.2.6",
"typescript": "^4.9.5"
},
"dependencies": {
"@octokit/core": "^4.2.0",
"astro-compress": "^1.1.32",
"astro-seo": "^0.7.0",
"lodash.samplesize": "^4.2.0",
"lodash.sortby": "^4.7.0",
"svelte": "^3.55.1",
"vite": "4.0.4",
"vite-plugin-pwa": "^0.14.3"
}
}