-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
79 lines (79 loc) · 2.28 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
{
"name": "syncdrome",
"version": "2.0.1",
"description": "Create a catalog of all files on specified hard drives",
"type": "commonjs",
"repository": "https://github.com/alexwing/Syncdrome",
"keywords": [
"tauri",
"catalog",
"hard drive",
"files",
"sync",
"syncdrome",
"fileCleaner"
],
"author": "Alejandro Aranda",
"license": "MIT",
"scripts": {
"front:dev": "vite",
"front:build": "tsc && vite build",
"front:preview": "vite preview",
"tauri:build": "tauri build",
"tauri:dev": "tauri dev",
"build": "npm run front:build"
},
"dependencies": {
"@tauri-apps/api": "^2.1.1",
"@tauri-apps/plugin-dialog": "^2.2.0",
"@tauri-apps/plugin-opener": "^2",
"axios": "^0.21.0",
"body-parser": "1.19.0",
"bootstrap": "^5.3.2",
"classnames": "2.2.6",
"core-js": "^3.34.0",
"cors": "^2.8.5",
"dotenv": "8.2.0",
"express": "^4.17.1",
"fs-extra": "^11.2.0",
"morgan": "^1.10.0",
"node-sass": "^7.0.1",
"react": "^18.3.1",
"react-bootstrap": "^2.9.1",
"react-bootstrap-icons": "^1.10.3",
"react-dom": "^18.3.1",
"react-markdown": "^6.0.2",
"react-router-dom": "5.2.0",
"react-select": "^5.8.0",
"react-windows-ui": "^4.2.4"
},
"devDependencies": {
"@babel/core": "7.12.9",
"@babel/plugin-proposal-class-properties": "7.12.1",
"@babel/preset-env": "7.12.7",
"@babel/preset-react": "7.12.7",
"@babel/preset-typescript": "^7.23.3",
"@tauri-apps/cli": "^2",
"@types/react": "^18.3.1",
"@types/react-dom": "^18.3.1",
"@vitejs/plugin-react": "^4.3.4",
"babel-loader": "8.2.1",
"babel-preset-es2015": "6.24.1",
"concurrently": "5.3.0",
"copy-webpack-plugin": "6.3.2",
"css-loader": "3.6.0",
"file-loader": "6.2.0",
"html-webpack-plugin": "4.5.0",
"postcss": "7.0.32",
"postcss-cssnext": "3.1.0",
"postcss-import": "12.0.1",
"postcss-load-config": "2.1.0",
"postcss-loader": "3.0.0",
"postcss-nesting": "7.0.1",
"rimraf": "3.0.2",
"style-loader": "1.2.1",
"typescript": "~5.6.2",
"url-loader": "4.1.0",
"vite": "^4.3.4"
}
}