-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
60 lines (60 loc) · 1.61 KB
/
Copy pathpackage.json
File metadata and controls
60 lines (60 loc) · 1.61 KB
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
{
"name": "react-starter",
"version": "1.8.0-alpha.1",
"description": "A starter project for React applications using a curated technology stack for optimal performance, reliability, and maintainability.",
"keywords": [
"react",
"typescript",
"vite",
"aws-cdk"
],
"author": "LeanStacks",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/leanstacks/react-starter.git"
},
"homepage": "https://github.com/leanstacks/react-starter#readme",
"directories": {
"doc": "docs"
},
"type": "module",
"workspaces": [
"packages/shared",
"packages/web",
"packages/infra"
],
"scripts": {
"build": "npm run build --workspaces --if-present",
"clean": "npm run clean --workspaces --if-present",
"format": "prettier --write .",
"format:check": "prettier --check .",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"prepare": "husky",
"test": "npm run test --workspaces --if-present",
"test:coverage": "npm run test:coverage --workspaces --if-present"
},
"dependencies": {
"class-variance-authority": "0.7.1",
"react": "19.2.8",
"react-dom": "19.2.8",
"zod": "4.4.3"
},
"devDependencies": {
"@eslint/js": "9.39.2",
"@types/node": "26.2.0",
"@types/react": "19.2.18",
"@types/react-dom": "19.2.4",
"@vitest/coverage-v8": "4.1.10",
"eslint": "9.39.2",
"globals": "17.10.0",
"husky": "9.1.7",
"prettier": "3.9.6",
"prettier-plugin-tailwindcss": "0.8.1",
"rimraf": "6.1.3",
"typescript": "5.9.3",
"typescript-eslint": "8.67.0",
"vitest": "4.1.10"
}
}