-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
55 lines (55 loc) · 1.78 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
{
"name": "tauri-template",
"version": "0.1.0",
"license": "",
"homepage": "tauri-template-url",
"private": true,
"scripts": {
"dev": "tauri dev",
"dev:front": "next frontend",
"build": "rimraf ./out && tauri build",
"build:front": "next build frontend",
"build:icons": "cargo tauri icon ./src-tauri/icons/icon.png",
"test": "jest",
"test:back": " cargo test --workspace",
"test:all": "npm test && npm run test:back",
"fmt": "prettier --write \"**/*.+(js|json|yml|ts|tsx|css)\" --ignore-path ./.gitignore && cargo fmt --all",
"lint": "next lint frontend && cargo clippy --workspace",
"lint:fix": "npm run fmt && next lint frontend --fix && cargo clippy --workspace --fix --allow-staged --allow-dirty",
"tauri": "tauri"
},
"dependencies": {
"@mui/icons-material": "^5.14.18",
"@mui/lab": "5.0.0-alpha.153",
"@mui/material": "^5.14.18",
"@tauri-apps/api": "^1.5.1",
"i18next": "^23.7.6",
"next": "14.0.3",
"react": "18.2.0",
"react-dom": "18.2.0",
"react-hook-form": "^7.48.2",
"react-hot-toast": "^2.4.1",
"react-i18next": "^13.5.0"
},
"devDependencies": {
"@tauri-apps/cli": "^1.5.6",
"@testing-library/jest-dom": "^6.1.4",
"@testing-library/react": "^14.1.2",
"@types/jest": "^29.5.8",
"@types/node": "20.9.1",
"@types/react": "18.2.37",
"@types/react-dom": "18.2.15",
"eslint": "^8.54.0",
"eslint-config-next": "14.0.3",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-import": "^2.29.0",
"eslint-plugin-strict-dependencies": "^1.2.4",
"eslint-plugin-unused-imports": "^3.0.0",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"prettier": "^3.1.0",
"rimraf": "^5.0.5",
"ts-jest": "^29.1.1",
"typescript": "5.2.2"
}
}