-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 807 Bytes
/
package.json
File metadata and controls
34 lines (34 loc) · 807 Bytes
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
{
"name": "react-compiler-poc",
"version": "1.0.0",
"description": "React draft project for validate new react compiler",
"keywords": [
"typescript",
"react",
"react-compiler"
],
"main": "src/index.tsx",
"dependencies": {
"babel-plugin-react-compiler": "0.0.0-experimental-592953e-20240517",
"react": "19.0.0-beta-26f2496093-20240514",
"react-dom": "19.0.0-beta-26f2496093-20240514"
},
"devDependencies": {
"@types/react": "18.2.38",
"@types/react-dom": "18.2.15",
"@vitejs/plugin-react": "^4.2.1",
"typescript": "4.4.4",
"vite": "^5.0.11"
},
"scripts": {
"dev": "vite",
"build": "tsc && vite build",
"preview": "vite preview"
},
"browserslist": [
">0.2%",
"not dead",
"not ie <= 11",
"not op_mini all"
]
}