-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
56 lines (56 loc) · 1.36 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
{
"author": "Marcus Lane",
"dependencies": {
"astro": "^5.3.0",
"eslint": "^8.57.1",
"typescript": "^5.7.3"
},
"description": "An opinionated React + TypeScript style guide for writing scalable, maintainable, and consistent code.",
"devDependencies": {
"@astrojs/mdx": "^4.0.8",
"@typescript-eslint/eslint-plugin": "^6.21.0",
"@typescript-eslint/parser": "^6.21.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-astro": "^0.30.0",
"eslint-plugin-markdown": "^3.0.0",
"eslint-plugin-prettier": "^5.2.3",
"husky": "^9.1.7",
"lint-staged": "^15.4.3",
"prettier": "^3.5.2",
"prettier-plugin-astro": "^0.14.1",
"vercel": "^41.2.0"
},
"engines": {
"node": ">=18.0.0"
},
"homepage": "https://react-typescript-style-guide.com",
"keywords": [
"react",
"typescript",
"style-guide",
"eslint",
"best-practices",
"frontend",
"code-quality"
],
"license": "MIT",
"lint-staged": {
"*.astro": "eslint --fix",
"*.md": "eslint --fix",
"*.ts": "eslint --fix"
},
"name": "react-typescript-style-guide",
"repository": {
"type": "git",
"url": "https://github.com/mlane/react-typescript-style-guide.git"
},
"scripts": {
"dev": "astro dev",
"build": "astro build",
"start": "astro preview",
"format": "prettier --write .",
"lint": "eslint . --ext .astro,.ts,.md --fix",
"prepare": "husky install"
},
"version": "1.0.0"
}