-
-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
70 lines (70 loc) · 2.15 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
58
59
60
61
62
63
64
65
66
67
68
69
70
{
"name": "demoman",
"private": true,
"version": "0.0.0",
"type": "module",
"scripts": {
"dev": "vite",
"build": "tsc && vite build",
"typecheck": "tsc --noEmit",
"test:rust": "cargo test",
"test": "npm run test:rust",
"lint:rust": "cargo clippy -- -D warnings",
"lint:js": "eslint . --cache",
"lint:css": "stylelint --cache src/**/*.css",
"lint": "npm run lint:js && npm run lint:css && npm run lint:rust",
"check": "npm run typecheck && npm run lint && npm run test",
"preview": "vite preview",
"tauri": "tauri"
},
"dependencies": {
"@mantine/core": "^7.4",
"@mantine/dates": "^7.4",
"@mantine/form": "^7.4",
"@mantine/hooks": "^7.4",
"@mantine/modals": "^7.4",
"@tabler/icons-react": "^2.0.0",
"@tauri-apps/api": "^2.1.0",
"@tauri-apps/plugin-clipboard-manager": "^2.0.0",
"@tauri-apps/plugin-dialog": "^2.0.1",
"@tauri-apps/plugin-shell": "^2.0.1",
"memoize-one": "^6.0.0",
"react": "^18.2.0",
"react-async-hook": "^4.0.0",
"react-dom": "^18.2.0",
"react-router-dom": "^6.20",
"react-virtualized-auto-sizer": "^1.0.7",
"react-window": "^1.8.7",
"tauri-plugin-log-api": "github:tauri-apps/tauri-plugin-log#v1"
},
"devDependencies": {
"@tauri-apps/cli": "^2.1.0",
"@types/node": "^20.8.0",
"@types/react": "^18.0.21",
"@types/react-dom": "^18.0.6",
"@types/react-virtualized-auto-sizer": "^1.0.1",
"@types/react-window": "^1.8.5",
"@typescript-eslint/eslint-plugin": "^6.7.0",
"@typescript-eslint/parser": "^6.7.0",
"@vitejs/plugin-react": "^4.2.1",
"autoprefixer": "^10.4.16",
"eslint": "^8.25.0",
"eslint-config-prettier": "^8.5.0",
"eslint-import-resolver-typescript": "^3.5.1",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-promise": "^6.0.1",
"eslint-plugin-react": "^7.31.8",
"eslint-plugin-react-hooks": "^4.6.0",
"postcss-preset-mantine": "^1.7.0",
"stylelint": "^15.10.3",
"stylelint-config-standard": "^34.0.0",
"typescript": "^5.2.2",
"vite": "^5.4"
},
"postcss": {
"plugins": {
"postcss-preset-mantine": {},
"autoprefixer": {}
}
}
}