-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 882 Bytes
/
package.json
File metadata and controls
37 lines (37 loc) · 882 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
35
36
37
{
"name": "my-react-app",
"private": true,
"version": "0.0.0",
"type": "module",
"scripts": {
"dev": "vite",
"build": "tsc -b && vite build",
"format": "prettier --write .",
"lint": "eslint .",
"preview": "vite preview",
"test:e2e": "playwright test",
"update": "ncu -u"
},
"dependencies": {
"react": "19.2.0",
"react-dom": "19.2.0"
},
"devDependencies": {
"@eslint/js": "9.39.1",
"@playwright/test": "1.56.1",
"@types/node": "24.10.0",
"@types/react": "19.2.2",
"@types/react-dom": "19.2.2",
"@vitejs/plugin-react-swc": "4.2.0",
"eslint": "9.39.1",
"eslint-plugin-react-hooks": "7.0.1",
"eslint-plugin-react-refresh": "0.4.24",
"globals": "16.5.0",
"npm-check-updates": "19.1.2",
"prettier": "3.6.2",
"prettier-plugin-organize-imports": "4.3.0",
"typescript": "5.9.3",
"typescript-eslint": "8.46.3",
"vite": "7.1.12"
}
}