-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 1.33 KB
/
package.json
File metadata and controls
47 lines (47 loc) · 1.33 KB
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
{
"name": "ios-encrypted-keychain-editor",
"private": true,
"version": "0.0.0",
"type": "module",
"scripts": {
"dev": "vite",
"build": "tsc && vite build",
"lint": "eslint src --ext ts,tsx --report-unused-disable-directives --max-warnings 0",
"preview": "vite preview",
"start": "concurrently \"cd backend && node api.js\" \"vite\""
},
"dependencies": {
"axios": "^1.14.0",
"bootstrap": "^5.3.8",
"concurrently": "^9.2.1",
"cors": "^2.8.6",
"express": "^5.2.1",
"irestore": "^1.2.0",
"path": "^0.12.7",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-modal": "^3.16.3",
"react-table": "^7.8.0",
"simple-plist": "^1.4.0",
"tmp": "^0.2.5"
},
"devDependencies": {
"@eslint/js": "^9.39.4",
"@types/bootstrap": "^5.2.10",
"@types/react": "^18.3.28",
"@types/react-dom": "^18.3.7",
"@types/react-modal": "^3.16.3",
"@types/react-table": "^7.7.20",
"@typescript-eslint/eslint-plugin": "^8.58.0",
"@typescript-eslint/parser": "^8.58.0",
"@vitejs/plugin-react": "^6.0.1",
"eslint": "^9.39.4",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-prettier": "^5.5.5",
"eslint-plugin-react-hooks": "^7.0.1",
"eslint-plugin-react-refresh": "^0.5.2",
"prettier": "^3.8.1",
"typescript": "^6.0.2",
"vite": "^8.0.8"
}
}