-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
107 lines (107 loc) · 3.28 KB
/
package.json
File metadata and controls
107 lines (107 loc) · 3.28 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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
{
"name": "connector_rust",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "vite",
"build": "tsc && vite build",
"preview": "vite preview",
"tauri": "tauri",
"lint": "eslint \"frontend/**/*.{ts,tsx}\"",
"lint-fix": "eslint --fix \"frontend/**/*.{ts,tsx}\"",
"prettier-check": "prettier --check 'frontend/**/*.{js,jsx,ts,tsx,json,css}'",
"prettier-fix": "prettier --write 'frontend/**/*.{js,jsx,ts,tsx,json,css}'",
"test": "vitest",
"storybook": "storybook dev -p 6006",
"build-storybook": "storybook build"
},
"eslintConfig": {
"extends": [
"react-app"
]
},
"imports": {
"#store": {
"storybook": "./frontend/mocks/PluginStoreMock",
"default": "@tauri-apps/plugin-store"
},
"#tauri/invoke": {
"storybook": "./frontend/mocks/TauriCore.mock.ts",
"default": "@tauri-apps/api/core"
},
"#*": [
"./frontend/*",
"./frontend/*.ts",
"./frontend/*.tsx"
]
},
"dependencies": {
"@tauri-apps/api": "2.0.3",
"@tauri-apps/plugin-dialog": "2.0.1",
"@tauri-apps/plugin-http": "2.0.0",
"@tauri-apps/plugin-log": "2.0.0",
"@tauri-apps/plugin-process": "2.0.0",
"@tauri-apps/plugin-store": "2.1.0",
"@tauri-apps/plugin-updater": "2.0.0",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-markdown": "^9.0.1",
"react-router-dom": "^6.27.0",
"typescript-eslint": "^8.12.2",
"uuid": "^9.0.1"
},
"devDependencies": {
"@chromatic-com/storybook": "^3.2.2",
"@storybook/addon-essentials": "^8.4.2",
"@storybook/addon-interactions": "^8.4.2",
"@storybook/addon-links": "^8.4.2",
"@storybook/addon-onboarding": "^8.4.2",
"@storybook/blocks": "^8.4.2",
"@storybook/react": "^8.4.2",
"@storybook/react-vite": "^8.4.2",
"@storybook/test": "^8.4.2",
"@tailwindcss/forms": "^0.5.9",
"@tauri-apps/cli": "2.0.0-beta.21",
"@testing-library/dom": "10.4.0",
"@testing-library/jest-dom": "6.5.0",
"@testing-library/react": "16.0.1",
"@testing-library/user-event": "14.5.2",
"@types/node": "^20.17.3",
"@types/react": "^18.3.12",
"@types/react-dom": "^18.3.1",
"@types/uuid": "9.0.8",
"@typescript-eslint/parser": "^8.12.2",
"@vitejs/plugin-react": "^4.3.3",
"@vitest/coverage-v8": "^2.1.4",
"autoprefixer": "^10.4.20",
"eslint": "^9.13.0",
"eslint-config-prettier": "9.1.0",
"eslint-import-resolver-typescript": "3.6.3",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-react": "^7.37.2",
"eslint-plugin-react-hooks": "^5.0.0",
"eslint-plugin-vitest": "^0.3.25",
"eslint-plugin-storybook": "^0.11.0",
"@vitest/eslint-plugin": "^1.1.7",
"jsdom": "25.0.0",
"msw": "2.4.9",
"postcss": "^8.4.47",
"prettier": "^3.3.3",
"storybook": "^8.4.2",
"tailwindcss": "^3.4.14",
"ts-node": "^10.9.2",
"typescript": "^5.6.3",
"vite": "^5.4.10",
"vitest": "^2.1.4",
"@eslint/compat": "^1.2.2",
"@eslint/eslintrc": "^3.1.0",
"@eslint/js": "^9.14.0",
"globals": "^15.12.0"
},
"packageManager": "pnpm@9.4.0+sha512.f549b8a52c9d2b8536762f99c0722205efc5af913e77835dbccc3b0b0b2ca9e7dc8022b78062c17291c48e88749c70ce88eb5a74f1fa8c4bf5e18bb46c8bd83a",
"pnpm": {
"overrides": {
"cookie@<0.7.0": ">=0.7.0"
}
}
}