-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
62 lines (62 loc) · 1.51 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
{
"author": "Marcus Lane",
"dependencies": {
"astro": "^5.3.0",
"eslint": "^8.57.1",
"typescript": "^5.7.3"
},
"description": "A feature-first React + TypeScript style guide for building scalable, maintainable, and predictable applications.",
"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-feature-style-guide.vercel.app",
"keywords": [
"architecture",
"best-practices",
"clean-code",
"engineering-standards",
"feature-first",
"frontend",
"nextjs",
"react",
"remix",
"scalable-code",
"style-guide",
"typescript",
"web-development"
],
"license": "MIT",
"lint-staged": {
"*.astro": "eslint --fix",
"*.md": "eslint --fix",
"*.ts": "eslint --fix"
},
"name": "react-typescript-feature-style-guide",
"repository": {
"type": "git",
"url": "https://github.com/mlane/react-typescript-feature-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"
}