-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 1.09 KB
/
package.json
File metadata and controls
40 lines (40 loc) · 1.09 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
40
{
"name": "gateway",
"version": "0.3.0",
"dependencies": {
"@emotion/react": "^11.0.0",
"@emotion/styled": "^11.0.0",
"@ethersphere/bee-js": "^12.0.0",
"@mui/material": "^6.0.0",
"file-saver": "^2.0.5",
"jszip": "^3.10.1",
"react": "^19.2.5",
"react-copy-to-clipboard": "^5.1.1",
"react-dom": "^19.2.5",
"react-feather": "^2.0.10",
"react-router-dom": "^7.14.2"
},
"devDependencies": {
"@commitlint/config-conventional": "^16.0.0",
"@playwright/test": "^1.59.1",
"@types/file-saver": "^2.0.5",
"@types/jest": "^27.4.0",
"@types/node": "^25.6.0",
"@types/react-copy-to-clipboard": "^5.0.2",
"@types/react-dom": "^19.2.3",
"depcheck": "^1.4.7",
"dotenv": "^17.4.2",
"prettier": "^2.5.1",
"typescript": "^5.0.0",
"vite": "^8.0.10"
},
"scripts": {
"start": "vite",
"build": "vite build --base=./",
"check": "tsc --noEmit",
"depcheck": "depcheck .",
"test": "playwright test",
"test:ui": "playwright test --ui",
"test:video": "playwright test --config playwright.video.config.ts"
}
}