-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
62 lines (62 loc) · 1.82 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": "lasfi.to",
"type": "module",
"version": "1.0.0",
"private": true,
"scripts": {
"dev": "astro dev",
"dev:output": "concurrently \"npm run dev:css\" \"astro dev\"",
"dev:css": "tailwindcss -w -i src/styles/tailwind.css -o public/output.css",
"start": "astro dev",
"build": "astro build",
"build:css": "tailwindcss -m -i src/styles/tailwind.css -o public/output.css",
"preview": "astro preview",
"astro": "astro",
"test": "playwright test",
"prepare": "husky install && npx astro sync",
"commit-check": "tsc --noEmit && lint-staged"
},
"dependencies": {
"@astrojs/partytown": "^1.2.2",
"@astrojs/react": "^2.2.0",
"@tailwindcss/typography": "^0.5.9",
"astro": "^2.5.0",
"astro-seo-schema": "^2.0.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-icons": "4.8.0"
},
"devDependencies": {
"@astrojs/sitemap": "^1.3.1",
"@astrojs/tailwind": "^3.1.3",
"@playwright/test": "^1.33.0",
"@types/react": "^18.2.6",
"@types/react-dom": "^18.2.4",
"@typescript-eslint/eslint-plugin": "^5.59.6",
"@typescript-eslint/parser": "^5.59.6",
"concurrently": "^8.0.1",
"eslint": "^8.40.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-jsx-a11y": "^6.7.1",
"eslint-plugin-promise": "^6.1.1",
"eslint-plugin-react": "^7.32.2",
"eslint-plugin-react-hooks": "^4.6.0",
"husky": "^8.0.3",
"lint-staged": "^13.2.2",
"postcss-custom-properties": "^13.1.5",
"prettier": "2.8.8",
"prettier-plugin-tailwindcss": "^0.3.0",
"tailwindcss": "^3.3.2"
},
"lint-staged": {
"*.{js,jsx,ts,tsx}": [
"eslint --fix",
"prettier --write -u"
],
"*.{css,less,scss,sass}": [
"prettier --write -u"
]
}
}