-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
58 lines (58 loc) · 1.71 KB
/
package.json
File metadata and controls
58 lines (58 loc) · 1.71 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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
{
"name": "benchttp-desktop",
"private": true,
"version": "0.0.0",
"type": "module",
"scripts": {
"dev": "tauri dev",
"build": "CI=true tauri build",
"tauri": "tauri",
"web:dev": "vite",
"web:build": "tsc && vite build",
"web:preview": "vite preview",
"test": "vitest",
"coverage": "vitest run --coverage",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"sidecar:build": "node scripts/sidecar-build.js",
"sidecar:build-windows": "node .\\scripts\\sidecar-build.js",
"sidecar:run": "scripts/sidecar-run.sh",
"predev": "npm run sidecar:build",
"prebuild": "npm run sidecar:build"
},
"dependencies": {
"@nivo/bar": "^0.80.0",
"@nivo/core": "^0.80.0",
"@tauri-apps/api": "^1.1.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-feather": "^2.0.10",
"react-router-dom": "^6.4.1"
},
"devDependencies": {
"@tauri-apps/cli": "^1.1.1",
"@testing-library/react": "^13.4.0",
"@types/node": "^18.7.23",
"@types/react": "^18.0.21",
"@types/react-dom": "^18.0.6",
"@typescript-eslint/eslint-plugin": "^5.38.1",
"@typescript-eslint/parser": "^5.38.1",
"@vitejs/plugin-react": "^2.1.0",
"@vitest/coverage-c8": "^0.23.4",
"eslint": "^8.24.0",
"eslint-config-prettier": "^8.5.0",
"eslint-import-resolver-typescript": "^3.5.1",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-react": "^7.31.8",
"eslint-plugin-react-hooks": "^4.6.0",
"execa": "^6.1.0",
"jsdom": "^20.0.0",
"prettier": "^2.7.1",
"sass": "^1.55.0",
"typescript": "^4.8.4",
"typescript-plugin-css-modules": "^3.4.0",
"vite": "^3.1.4",
"vitest": "^0.23.1"
}
}