-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 956 Bytes
/
package.json
File metadata and controls
36 lines (36 loc) · 956 Bytes
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
{
"name": "basicb",
"version": "1.0.0",
"description": "An Amazing Capacitor App",
"main": "index.js",
"scripts": {
"open android": "npx cap open android",
"run android": "npx cap run android",
"update": "npx cap update",
"generate icons": "cordova-res android --skip-config --copy",
"servewww": "serve ./www",
"bundle": "browserify www/js/index.js -o www/js/bundle.js",
"start": "node inpantry_server.js"
},
"keywords": [
"capacitor",
"mobile"
],
"author": "",
"license": "ISC",
"dependencies": {
"@capacitor/android": "^3.5.1",
"@capacitor/app": "^1.0.1",
"@capacitor/browser": "^1.0.1",
"@capacitor/camera": "1.0.1",
"@capacitor/core": "^3.5.1",
"@capacitor/splash-screen": "1.0.1",
"@capacitor/storage": "^1.0.2",
"@capacitor/toast": "^1.0.2",
"browserify": "^17.0.0",
"express": "^5.1.0"
},
"devDependencies": {
"@capacitor/cli": "^3.5.1"
}
}