forked from block-editors/blocknotes
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
44 lines (44 loc) · 1.06 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
{
"name": "blocknotes",
"version": "1.0.0",
"description": "Blocknotes",
"main": "index.js",
"scripts": {
"start": "vite",
"build": "vite build && node post-build.js",
"sync": "npm run build && cap sync",
"preview": "vite preview",
"test": "",
"prepare": "husky install"
},
"dependencies": {
"@capacitor/android": "^5.0.4",
"@capacitor/app": "^5.0.3",
"@capacitor/core": "latest",
"@capacitor/filesystem": "^5.0.4",
"@capacitor/ios": "^5.0.4",
"@capacitor/keyboard": "^5.0.4",
"@capacitor/preferences": "^5.0.6",
"@capacitor/splash-screen": "latest",
"@capacitor/status-bar": "^5.0.4",
"@php-wasm/web": "^0.2.0",
"mock-xmlhttprequest": "^8.2.0"
},
"devDependencies": {
"@capacitor/cli": "latest",
"husky": "^8.0.3",
"standard": "^17.1.0",
"vite": "^4.3.9"
},
"standard": {
"globals": [
"self"
],
"ignore": [
"/node_modules/@capacitor/filesystem/dist/esm/web.js",
"/node_modules/@php-wasm/web/*",
"/src/js/wp-*",
"public"
]
}
}