-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
56 lines (56 loc) · 1.62 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
{
"name": "crafter-station",
"type": "module",
"version": "0.0.1",
"scripts": {
"dev": "astro dev",
"start": "astro dev",
"build": "astro build",
"preview": "astro preview",
"astro": "astro",
"lint": "prettier --write \"**/*.{js,jsx,ts,tsx,md,mdx,astro}\" && eslint --fix \"src/**/*.{js,ts,jsx,tsx,astro}\"",
"commitlint": "commitlint --edit"
},
"dependencies": {
"@astrojs/react": "^3.0.9",
"@astrojs/tailwind": "^5.1.0",
"@types/react": "^18.0.21",
"@types/react-dom": "^18.0.6",
"astro": "^4.1.1",
"clsx": "^2.1.0",
"framer-motion": "^10.16.4",
"geist": "^1.2.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"sharp": "^0.32.6",
"tailwind-merge": "^2.2.0",
"tailwindcss": "^3.0.24"
},
"devDependencies": {
"@commitlint/cli": "^17.7.1",
"@commitlint/config-conventional": "^17.7.0",
"@typescript-eslint/eslint-plugin": "^6.4.0",
"@typescript-eslint/parser": "^6.7.2",
"eslint": "^8.50.0",
"eslint-config-prettier": "^9.0.0",
"eslint-config-standard-with-typescript": "^39.1.0",
"eslint-plugin-astro": "^0.29.0",
"eslint-plugin-import": "^2.28.1",
"eslint-plugin-jsx-a11y": "^6.7.1",
"eslint-plugin-n": "^16.1.0",
"eslint-plugin-prettier": "^5.0.0",
"eslint-plugin-promise": "^6.1.1",
"eslint-plugin-react": "^7.33.2",
"husky": "^8.0.3",
"prettier": "^3.0.3",
"prettier-config-standard": "^7.0.0",
"prettier-plugin-astro": "^0.12.0",
"tailwindcss-animated": "^1.0.1",
"typescript": "*"
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
}
}