-
Notifications
You must be signed in to change notification settings - Fork 29
Expand file tree
/
Copy pathpackage.json
More file actions
78 lines (78 loc) · 2.01 KB
/
package.json
File metadata and controls
78 lines (78 loc) · 2.01 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
{
"name": "react18-source-implementation",
"version": "1.0.0",
"description": "🚀 Complete React 18 implementation from scratch with Fiber architecture, Concurrent features, Hooks system, and Scheduler. Perfect for understanding React internals and modern frontend architecture patterns.",
"main": "src/main.jsx",
"type": "module",
"scripts": {
"dev": "vite",
"build": "vite build",
"preview": "vite preview",
"test": "vitest",
"test:ui": "vitest --ui",
"lint": "eslint src --ext js,jsx --report-unused-disable-directives --max-warnings 0",
"lint:fix": "eslint src --ext js,jsx --fix"
},
"keywords": [
"react",
"react18",
"fiber",
"hooks",
"concurrent",
"scheduler",
"frontend",
"javascript",
"source-code",
"implementation",
"tutorial",
"learning",
"architecture",
"performance",
"web-development",
"framework",
"virtual-dom",
"reconciliation",
"time-slicing",
"priority-scheduling"
],
"author": {
"name": "React 18 Implementation Team",
"email": "contact@react18-impl.dev"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/username/react18-source-implementation.git"
},
"bugs": {
"url": "https://github.com/username/react18-source-implementation/issues"
},
"homepage": "https://github.com/username/react18-source-implementation#readme",
"devDependencies": {
"@types/react": "^18.2.15",
"@types/react-dom": "^18.2.7",
"@vitejs/plugin-react": "^4.0.3",
"eslint": "^8.45.0",
"eslint-plugin-react": "^7.32.2",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-react-refresh": "^0.4.3",
"vite": "^4.4.5",
"vitest": "^0.34.0"
},
"engines": {
"node": ">=16.0.0",
"npm": ">=8.0.0"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
}
}