-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
53 lines (53 loc) · 1.38 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
{
"name": "pressify",
"private": true,
"version": "develop",
"type": "module",
"scripts": {
"dev": "vite",
"build": "tsc && vite build",
"build:ion": "tsc && ionic build --prod",
"serve": "ionic serve --host=0.0.0.0 --no-open",
"preview": "vite preview",
"test.unit": "vitest",
"lint": "eslint",
"format": "prettier . --write"
},
"dependencies": {
"@capacitor/app": "7.0.0",
"@capacitor/core": "7.0.1",
"@capacitor/haptics": "7.0.0",
"@capacitor/keyboard": "7.0.0",
"@capacitor/status-bar": "7.0.0",
"@fontsource/eb-garamond": "^5.1.2",
"@ionic/react": "^8.4.3",
"@ionic/react-router": "^8.4.3",
"@tanstack/react-query": "^5.66.0",
"@types/react-router": "^5.1.20",
"@types/react-router-dom": "^5.3.3",
"dompurify": "^3.2.4",
"ionicons": "^7.0.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-router": "^5.3.4",
"react-router-dom": "^5.3.4"
},
"devDependencies": {
"@capacitor/cli": "7.0.1",
"@ionic/cli": "^7.2.0",
"@tanstack/eslint-plugin-query": "^5.66.0",
"@types/dompurify": "^3.2.0",
"@types/react": "^18.0.27",
"@types/react-dom": "^18.0.10",
"@vitejs/plugin-legacy": "^6.0.0",
"@vitejs/plugin-react": "^4.3.4",
"eslint": "^8.35.0",
"eslint-plugin-react": "^7.37.4",
"jsdom": "^26.0.0",
"prettier": "^3.4.2",
"terser": "^5.37.0",
"typescript": "^5.7.3",
"vite": "~6.0.11",
"vite-plugin-pwa": "^0.21.1"
}
}