-
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) · 1 KB
/
package.json
File metadata and controls
38 lines (38 loc) · 1 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
{
"name": "react-project-setup",
"version": "0.0.1",
"description": "Creation of a React project without using Create React App.",
"type": "module",
"main": "index.js",
"scripts": {
"dev": "vite",
"build": "vite build",
"test": "echo \"Error: no test specified\" && exit 1",
"prettier": "prettier --write ."
},
"keywords": [],
"author": "Fabio_Pi",
"license": "ISC",
"dependencies": {
"@fabio_pi_org/open-ui": "^1.3.7",
"i18next": "^23.11.5",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-i18next": "^14.1.1"
},
"devDependencies": {
"@eslint/js": "^9.0.0",
"@types/react": "^18.2.66",
"@types/react-dom": "^18.2.22",
"@vitejs/plugin-react": "^4.2.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",
"globals": "^15.0.0",
"prettier": "3.2.5",
"typescript": "^5.4.5",
"typescript-eslint": "^7.6.0",
"vite": "^5.2.11"
}
}