-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 956 Bytes
/
Copy pathpackage.json
File metadata and controls
38 lines (38 loc) · 956 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
38
{
"name": "react-tutorial",
"private": true,
"version": "0.0.0",
"type": "module",
"engines": {
"npm": ">=10.7.0 <11.0.0",
"node": ">=18.20.4 <20.0.0"
},
"scripts": {
"dev": "vite",
"build": "vite build",
"lint": "eslint .",
"format": "prettier --write ./src",
"preview": "vite preview"
},
"dependencies": {
"@types/jest": "^29.5.14",
"@types/node": "^22.10.7",
"eslint-config-prettier": "^10.0.1",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-router-dom": "^6.28.1",
"typescript": "^5.7.3",
"vite-tsconfig-paths": "^5.1.4"
},
"devDependencies": {
"@types/react": "^18.3.18",
"@types/react-dom": "^18.3.5",
"@vitejs/plugin-react": "^4.3.1",
"eslint": "^8.57.0",
"eslint-plugin-react": "^7.34.1",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-react-refresh": "^0.4.6",
"vite": "^5.4.1",
"vite-tsconfig-paths": "^5.1.4"
}
}