-
Notifications
You must be signed in to change notification settings - Fork 45
/
package.json
92 lines (92 loc) · 2.62 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
{
"name": "trguing",
"version": "1.4.0",
"sideEffects": [
"*.css"
],
"type": "module",
"scripts": {
"tauri-dev": "tauri dev",
"build": "tauri build",
"build-bin": "tauri build -b none",
"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": "^1.6.0",
"@types/lodash-es": "^4.17.12",
"@types/luxon": "^3.3.7",
"@types/react": "18.2.42",
"@types/react-beautiful-dnd": "^13.1.7",
"@types/react-dom": "^18.2.18",
"@types/ua-parser-js": "^0.7.39",
"@typescript-eslint/eslint-plugin": "^5.62.0",
"copy-webpack-plugin": "^11.0.0",
"css-loader": "^6.8.1",
"eslint": "^8.56.0",
"eslint-config-standard-with-typescript": "^34.0.1",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-n": "^15.7.0",
"eslint-plugin-promise": "^6.1.1",
"eslint-plugin-react": "^7.33.2",
"eslint-plugin-react-hooks": "^4.6.0",
"execa": "^7.2.0",
"html-webpack-plugin": "^5.6.0",
"mini-css-extract-plugin": "^2.7.6",
"style-loader": "^3.3.3",
"ts-loader": "^9.5.1",
"typescript": "^5.3.3",
"webpack": "^5.89.0",
"webpack-bundle-analyzer": "^4.10.1",
"webpack-cli": "^5.1.4",
"webpack-dev-server": "^4.15.1",
"webpack-merge": "^5.10.0"
},
"dependencies": {
"@emotion/react": "^11.11.1",
"@mantine/core": "^6.0.2",
"@mantine/dropzone": "^6.0.21",
"@mantine/form": "^6.0.21",
"@mantine/hooks": "^6.0.2",
"@mantine/modals": "^6.0.21",
"@mantine/notifications": "^6.0.21",
"@popperjs/core": "^2.11.8",
"@tanstack/react-query": "^4.36.1",
"@tanstack/react-query-devtools": "^4.36.1",
"@tanstack/react-table": "^8.11.2",
"@tanstack/react-virtual": "^3.0.1",
"@tauri-apps/api": "^1.6.0",
"@yornaath/batshit": "^0.7.1",
"buffer": "^6.0.3",
"flag-icons": "^6.15.0",
"lodash-es": "^4.17.21",
"react": "^18.2.0",
"react-beautiful-dnd": "^13.1.1",
"react-bootstrap-icons": "^1.10.3",
"react-dom": "^18.2.0",
"react-resize-detector": "^8.1.0",
"react-split": "^2.0.14",
"split.js": "^1.6.5",
"ua-parser-js": "^1.0.37"
},
"madge": {
"webpackConfig": "./webpack.prod.js",
"tsConfig": "./tsconfig.json",
"fileExtensions": [
"ts",
"tsx"
],
"detectiveOptions": {
"ts": {
"skipTypeImports": true
},
"tsx": {
"skipTypeImports": true
}
}
}
}