-
Notifications
You must be signed in to change notification settings - Fork 57
/
Copy pathpackage.json
99 lines (99 loc) · 2.9 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
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
{
"name": "trguing",
"version": "1.4.0",
"sideEffects": [
"*.css"
],
"type": "module",
"scripts": {
"tauri-dev": "tauri dev",
"tauri": "tauri",
"build": "tauri build",
"build-bin": "tauri build -b",
"webpack-serve": "webpack serve --config webpack.dev.mjs",
"webpack-dev": "webpack --config webpack.dev.mjs",
"webpack-prod": "webpack --config webpack.prod.mjs",
"info": "tauri info",
"react-devtools": "npx react-devtools"
},
"devDependencies": {
"@svgr/webpack": "^8.1.0",
"@tauri-apps/cli": "^2.2.7",
"@types/lodash-es": "^4.17.12",
"@types/luxon": "^3.4.2",
"@types/react": "18.2.42",
"@types/react-beautiful-dnd": "^13.1.8",
"@types/react-dom": "^18.3.5",
"@types/ua-parser-js": "^0.7.39",
"@typescript-eslint/eslint-plugin": "^5.62.0",
"copy-webpack-plugin": "^11.0.0",
"css-loader": "^6.11.0",
"eslint": "^8.57.1",
"eslint-config-standard-with-typescript": "^34.0.1",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-n": "^15.7.0",
"eslint-plugin-promise": "^6.6.0",
"eslint-plugin-react": "^7.37.4",
"eslint-plugin-react-hooks": "^4.6.2",
"execa": "^7.2.0",
"html-webpack-plugin": "^5.6.3",
"mini-css-extract-plugin": "^2.9.2",
"style-loader": "^3.3.4",
"ts-loader": "^9.5.2",
"typescript": "^5.7.3",
"webpack": "^5.97.1",
"webpack-bundle-analyzer": "^4.10.2",
"webpack-cli": "^5.1.4",
"webpack-dev-server": "^4.15.2",
"webpack-merge": "^5.10.0"
},
"dependencies": {
"@emotion/react": "^11.14.0",
"@mantine/core": "^6.0.2",
"@mantine/dropzone": "^6.0.22",
"@mantine/form": "^6.0.22",
"@mantine/hooks": "^6.0.2",
"@mantine/modals": "^6.0.22",
"@mantine/notifications": "^6.0.22",
"@popperjs/core": "^2.11.8",
"@tanstack/react-query": "^4.36.1",
"@tanstack/react-query-devtools": "^4.36.1",
"@tanstack/react-table": "^8.20.6",
"@tanstack/react-virtual": "^3.11.2",
"@tauri-apps/api": "^2.2.0",
"@tauri-apps/plugin-cli": "^2.2.0",
"@tauri-apps/plugin-clipboard-manager": "^2.2.0",
"@tauri-apps/plugin-dialog": "^2.2.0",
"@tauri-apps/plugin-fs": "^2.2.0",
"@tauri-apps/plugin-notification": "^2.2.1",
"@tauri-apps/plugin-shell": "^2.2.0",
"@yornaath/batshit": "^0.7.1",
"buffer": "^6.0.3",
"flag-icons": "^6.15.0",
"lodash-es": "^4.17.21",
"react": "^18.3.1",
"react-beautiful-dnd": "^13.1.1",
"react-bootstrap-icons": "^1.11.5",
"react-dom": "^18.3.1",
"react-resize-detector": "^8.1.0",
"react-split": "^2.0.14",
"split.js": "^1.6.5",
"ua-parser-js": "^1.0.40"
},
"madge": {
"webpackConfig": "./webpack.prod.js",
"tsConfig": "./tsconfig.json",
"fileExtensions": [
"ts",
"tsx"
],
"detectiveOptions": {
"ts": {
"skipTypeImports": true
},
"tsx": {
"skipTypeImports": true
}
}
}
}