-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
54 lines (54 loc) · 1.42 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
{
"name": "capacitor-plugins-docs",
"private": true,
"version": "0.0.1",
"description": "Stencil App Starter",
"scripts": {
"build": "stencil build",
"build:ci": "stencil build --ci --prerender",
"start": "stencil build --dev --watch --serve",
"generate": "stencil generate",
"docs": "ts-node -P scripts/tsconfig.json scripts/markdown-to-html",
"fmt": "prettier --parser typescript --write \"./src/**/*.tsx\""
},
"dependencies": {
"@stencil/core": "^2.12.0",
"@stencil/sass": "^1.5.2",
"sanitize.css": "^13.0.0",
"stencil-router-v2": "^0.6.0",
"zenn-content-css": "^0.1.100"
},
"devDependencies": {
"@capacitor-community/admob": "^5.3.1",
"@capacitor-community/stripe": "^5.5.1",
"@capacitor/docgen": "^0.1.0",
"@types/fs-extra": "^9.0.13",
"@types/glob": "^7.2.0",
"@types/jest": "^26.0.24",
"front-matter": "^4.0.2",
"fs-extra": "^10.0.0",
"glob": "^7.2.0",
"husky": "^7.0.4",
"jest": "^26.6.3",
"jest-cli": "^26.6.3",
"lint-staged": "^12.1.5",
"pre-commit": "^1.2.2",
"prettier": "^2.5.1",
"puppeteer": "^10.0.0",
"rollup-plugin-node-polyfills": "^0.2.1",
"ts-node": "^10.4.0",
"zenn-markdown-html": "^0.1.144"
},
"lint-staged": {
"*.tsx": [
"prettier --parser typescript --write",
"git add"
]
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"license": "MIT"
}