-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.11 KB
/
package.json
File metadata and controls
50 lines (50 loc) · 1.11 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
48
49
50
{
"name": "org.example.instantgram",
"displayName": "Instantgram",
"version": "1.0.0",
"description": "Simple Instagram clone with Appwrite and Cordova",
"type": "module",
"scripts": {
"dev": "vite --port 3000",
"build": "tsc && vite build",
"preview": "vite preview",
"format": "prettier --write ."
},
"dependencies": {
"@fontsource/baloo-2": "^4.5.10",
"appwrite": "^10.1.0",
"cordova": "^11.0.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-router-dom": "^6.4.2"
},
"devDependencies": {
"@types/cordova": "^0.0.34",
"@types/react": "^18.0.17",
"@types/react-dom": "^18.0.6",
"@vitejs/plugin-react": "^2.1.0",
"autoprefixer": "^10.4.12",
"cordova-android": "^10.1.2",
"cordova-electron": "^3.1.0",
"cordova-plugin-dialogs": "^2.0.2",
"postcss": "^8.4.18",
"prettier": "^2.7.1",
"prettier-plugin-tailwindcss": "^0.1.13",
"tailwindcss": "^3.1.8",
"typescript": "^4.6.4",
"vite": "^3.1.0"
},
"keywords": [
"ecosystem:cordova"
],
"license": "MIT",
"cordova": {
"platforms": [
"electron",
"android"
],
"plugins": {
"cordova-plugin-dialogs": {}
}
}
}