forked from ionic-jp/capacitor-site
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
64 lines (64 loc) · 2.24 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
54
55
56
57
58
59
60
61
62
63
64
{
"name": "capacitor-site",
"private": true,
"version": "0.0.1",
"description": "Capacitor Site",
"scripts": {
"api-genhtml": "node scripts/docs.js",
"api-typedoc": "typedoc --exclude **/__test__/*.ts --json dist/docs.json --mode modules --includeDeclarations node_modules/@capacitor/core/dist/esm/core-plugin-definitions.d.ts",
"api-docs": "npm run api-typedoc && npm run api-genhtml",
"blog": "tsc --p ./scripts && node ./scripts/blog",
"site-structure": "tsc --p ./scripts && node ./scripts/site-structure && node ./scripts/markdown-to-html",
"ci:env": "touch .env && echo PRISMIC_ENDPOINT=$PRISMIC_ENDPOINT >> .env",
"ci": "npm run ci:env && npm run build",
"build": "npm run blog && npm run site-structure && npm run api-docs && stencil build --prerender && npm run netlify",
"start": "stencil build --dev --watch --serve",
"generate": "stencil generate",
"serve": "stencil build --dev --watch",
"netlify": "echo '/* /index.html 200\n/docs/ /docs 200\n/community/ /community 200' >> www/_redirects"
},
"devDependencies": {
"@capacitor/core": "^2.1.2",
"@ionic-internal/sites-shared": "0.0.32",
"@stencil/core": "^1.13.0-4",
"@stencil/helmet": "^0.3.2",
"@stencil/sass": "^1.3.1",
"@stencil/store": "^1.3.0",
"@stencil/utils": "0.0.5",
"@types/glob": "^7.1.1",
"@types/marked": "^0.6.5",
"@types/prismjs": "^1.9.0",
"chalk": "^4.0.0",
"copy-text-to-clipboard": "^1.0.4",
"date-fns": "^2.14.0",
"dotenv": "^8.0.0",
"front-matter": "^3.2.1",
"fs-extra": "^9.0.0",
"glob": "^7.1.6",
"ionicons": "^5.0.1",
"marked": "^0.5.2",
"natives": "^1.1.6",
"node-fetch": "^2.6.0",
"prismic-dom": "^2.2.3",
"prismic-javascript": "^2.7.1",
"prismjs": "^1.16.0",
"remark": "^12.0.0",
"rollup-plugin-dotenv": "^0.3.0",
"stencil-router-v2": "^0.5.0",
"typedoc": "^0.17.7",
"workbox-build": "4.3.1"
},
"author": "Ionic Team",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/ionic-team/capacitor.git"
},
"bugs": {
"url": "https://github.com/ionic-team/capacitor"
},
"resolutions": {
"natives": "1.1.3"
},
"homepage": "https://github.com/ionic-team/capacitor"
}