-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
51 lines (51 loc) · 1.58 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
{
"name": "ei-landing",
"version": "0.0.1",
"type": "module",
"scripts": {
"astro": "astro",
"build": "astro check && astro build",
"clean": "git clean -xdf node_modules dist",
"dev": "astro dev",
"format": "prettier --check \"**/*.{js,cjs,mjs,ts,tsx,md,json,astro}\"",
"format:fix": "prettier --write \"**/*.{js,cjs,mjs,ts,tsx,md,mdx,json,astro}\"",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"preprettier": ".prettierignore",
"preview": "astro preview",
"start": "astro dev"
},
"dependencies": {
"@astrojs/check": "^0.8.2",
"@astrojs/tailwind": "^5.1.0",
"@octokit/rest": "^21.0.1",
"astro": "^4.12.1",
"dotenv": "^16.4.5",
"octokit": "^4.0.2",
"tailwindcss": "^3.4.6",
"tailwindcss-animated": "^1.1.2",
"typescript": "^5.5.3"
},
"devDependencies": {
"@astrojs/ts-plugin": "^1.8.0",
"@ianvs/prettier-plugin-sort-imports": "^4.2.1",
"@types/node": "^20.14.2",
"@typescript-eslint/eslint-plugin": "^7.13.0",
"@typescript-eslint/parser": "^7.13.0",
"astro-eslint-parser": "^1.0.2",
"class-variance-authority": "^0.7.0",
"clsx": "^2.1.1",
"eslint": "8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-astro": "^1.2.2",
"eslint-plugin-compat": "^5.0.0",
"eslint-plugin-jsx-a11y": "^6.8.0",
"eslint-plugin-promise": "^6.2.0",
"eslint-plugin-sonarjs": "^1.0.3",
"prettier": "^3.3.3",
"prettier-plugin-astro": "^0.14.1",
"prettier-plugin-tailwindcss": "^0.6.5",
"tailwind-merge": "^2.4.0",
"typescript-eslint": "^7.16.1"
}
}