-
Notifications
You must be signed in to change notification settings - Fork 112
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 1.12 KB
/
package.json
File metadata and controls
39 lines (39 loc) · 1.12 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
{
"name": "vite-ts",
"private": true,
"version": "0.0.0",
"type": "module",
"scripts": {
"dev": "vite",
"build": "tsc && vite build",
"test": "cypress run --component --browser chrome",
"testE2E": "cypress run --e2e --browser chrome",
"test:open": "cypress open --component --browser chrome",
"testE2E:open": "cypress open --e2e --browser chrome",
"lint": "eslint .",
"preview": "vite preview"
},
"dependencies": {
"@ui5/webcomponents": "2.21.1",
"@ui5/webcomponents-base": "2.21.1",
"@ui5/webcomponents-fiori": "2.21.1",
"@ui5/webcomponents-icons": "2.21.1",
"@ui5/webcomponents-react": "2.21.3",
"react": "19.2.5",
"react-dom": "19.2.5",
"react-router": "7.14.2"
},
"devDependencies": {
"@types/react": "19.2.14",
"@types/react-dom": "19.2.3",
"@ui5/webcomponents-cypress-commands": "2.21.3",
"@vitejs/plugin-react": "6.0.1",
"cypress": "15.14.1",
"eslint": "9.39.4",
"eslint-plugin-react-hooks": "7.1.1",
"eslint-plugin-react-refresh": "0.5.2",
"globals": "17.5.0",
"typescript-eslint": "8.58.2",
"vite": "8.0.10"
}
}