-
Notifications
You must be signed in to change notification settings - Fork 14
/
Copy pathpackage.json
57 lines (57 loc) · 1.69 KB
/
package.json
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
{
"name": "tesla-camera",
"private": true,
"version": "1.1.3",
"scripts": {
"dev": "rsbuild dev",
"build": "rsbuild build",
"build:tauri": "rsbuild build --env-mode tauri",
"preview": "rsbuild preview --port 3091",
"app:dev": "pnpm tauri dev",
"app:build": "tauri build",
"lint": "eslint src --ext ts,tsx --report-unused-disable-directives --max-warnings 0",
"bump:version": "node ./scripts/bump-version.js",
"prepare": "husky install"
},
"lint-staged": {
"*.{js,ts,tsx}": "eslint --fix"
},
"engines": {
"pnpm": ">=8.0.0"
},
"dependencies": {
"@fluentui/react-components": "^9.25.1",
"@fluentui/react-icons": "^2.0.204",
"@fluentui/react-tags-preview": "^0.1.3",
"@mario34/eslint-config-react": "^1.0.0",
"@tauri-apps/api": "^1.3.0",
"classnames": "^2.3.2",
"dayjs": "^1.11.7",
"lodash-es": "^4.17.21",
"react": "^18.2.0",
"react-dom": "^18.2.0"
},
"devDependencies": {
"@commitlint/cli": "^17.7.1",
"@commitlint/config-angular": "^17.7.0",
"@rsbuild/core": "^0.5.2",
"@rsbuild/plugin-react": "^0.5.2",
"@tauri-apps/cli": "^1.3.1",
"@types/lodash-es": "^4.17.7",
"@types/react": "^18.0.28",
"@types/react-dom": "^18.0.11",
"@types/wicg-file-system-access": "^2020.9.6",
"@typescript-eslint/eslint-plugin": "^5.57.1",
"@typescript-eslint/parser": "^5.57.1",
"conventional-changelog-cli": "^3.0.0",
"eslint": "^8.38.0",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-react-refresh": "^0.3.4",
"husky": "^8.0.0",
"lint-staged": "^14.0.1",
"minimist": "^1.2.8",
"sass": "^1.62.1",
"simple-git": "^3.19.1",
"typescript": "^5.0.2"
}
}