-
-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
46 lines (46 loc) · 1.35 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
{
"name": "gatsby-starter-capacitor",
"version": "2.0.0",
"description": "Build blazing fast mobile apps with Gatsby and Capacitor",
"private": true,
"scripts": {
"build": "gatsby build",
"start:android": "npm run build && npx cap copy android && npx cap open android",
"start:ios": "npm run build && npx cap copy ios && npx cap open ios",
"test": "echo \"Error: no test specified\" && exit 1",
"format": "prettier --write \"**/*.{js,jsx,ts,tsx,json,yml,md}\""
},
"repository": {
"type": "git",
"url": "git+https://github.com/flogy/gatsby-starter-capacitor.git"
},
"keywords": [
"gatsby",
"capacitor",
"cordova",
"phonegap"
],
"author": "Florian Gyger Software <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/flogy/gatsby-starter-capacitor/issues"
},
"homepage": "https://github.com/flogy/gatsby-starter-capacitor#readme",
"dependencies": {
"@capacitor/android": "^3.3.2",
"@capacitor/cli": "^3.3.2",
"@capacitor/core": "^3.3.2",
"@capacitor/ios": "^3.3.2",
"@capacitor/toast": "^1.0.6",
"gatsby": "^4.2.0",
"react": "^17.0.2",
"react-dom": "^17.0.2"
},
"devDependencies": {
"@types/node": "^16.11.10",
"@types/react": "^17.0.37",
"@types/react-dom": "^17.0.11",
"prettier": "^2.5.0",
"typescript": "^4.5.2"
}
}