-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
108 lines (108 loc) · 2.98 KB
/
package.json
File metadata and controls
108 lines (108 loc) · 2.98 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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
{
"name": "react-mfe-template",
"version": "1.0.0",
"type": "module",
"description": "Production-ready React micro frontend template with atomic design system, 95%+ quality score, and zero configuration setup",
"keywords": [
"react",
"micro-frontend",
"mfe",
"template",
"typescript",
"tailwind",
"atomic-design",
"vite",
"vitest"
],
"author": "Jonatan Mata <jonmatum@gmail.com>",
"license": "MIT",
"main": "dist/index.cjs",
"module": "dist/index.js",
"types": "dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js",
"require": "./dist/index.cjs"
},
"./types": {
"types": "./dist/index.d.ts",
"import": "./dist/index.d.ts",
"require": "./dist/index.d.cts"
}
},
"files": [
"dist",
"README.md",
"LICENSE"
],
"scripts": {
"dev": "vite",
"build": "npm run clean && npm run build:lib",
"build:lib": "tsup",
"build:vite": "tsc -b && vite build",
"build:watch": "tsup --watch",
"build:analyze": "npm run build:lib -- --metafile && echo 'Build analysis complete'",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"format": "node scripts/format.js",
"format:quick": "prettier --write \"src/**/*.{ts,tsx,js,jsx,json,md}\" && eslint . --fix --quiet",
"format:check": "prettier --check \"src/**/*.{ts,tsx,js,jsx,json,md}\"",
"preview": "vite preview",
"type-check": "tsc --noEmit",
"clean": "rm -rf dist",
"test": "vitest",
"test:ui": "vitest --ui",
"test:run": "vitest run",
"test:coverage": "vitest run --coverage",
"test:watch": "vitest --watch",
"prepare": "npm run build"
},
"dependencies": {
"@heroicons/react": "^2.2.0"
},
"peerDependencies": {
"react": ">=18.0.0",
"react-dom": ">=18.0.0"
},
"devDependencies": {
"@eslint/js": "^9.33.0",
"@testing-library/jest-dom": "^6.7.0",
"@testing-library/react": "^16.3.0",
"@testing-library/user-event": "^14.6.1",
"@types/node": "^24.3.0",
"@types/react": "^19.1.10",
"@types/react-dom": "^19.1.7",
"@vitejs/plugin-react-swc": "^3.11.0",
"@vitest/coverage-v8": "^3.2.4",
"@vitest/ui": "^3.2.4",
"autoprefixer": "^10.4.20",
"eslint": "^9.33.0",
"eslint-plugin-react-hooks": "^5.2.0",
"eslint-plugin-react-refresh": "^0.4.20",
"globals": "^16.3.0",
"happy-dom": "^15.11.7",
"postcss": "^8.5.0",
"prettier": "^3.6.2",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"tailwindcss": "^3.4.0",
"tsup": "^8.0.0",
"typescript": "^5.9.2",
"typescript-eslint": "^8.39.1",
"vite": "^7.1.2",
"vitest": "^3.2.4"
},
"engines": {
"node": ">=18.0.0",
"npm": ">=9.0.0"
},
"repository": {
"type": "git",
"url": "https://github.com/jonmatum/react-mfe-template.git"
},
"bugs": {
"url": "https://github.com/jonmatum/react-mfe-template/issues"
},
"homepage": "https://github.com/jonmatum/react-mfe-template#readme"
}