-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
49 lines (49 loc) · 1.5 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
{
"name": "bonfire",
"version": "1.0.0",
"private": true,
"scripts": {
"dev": "nuxt",
"dev:all": "nuxt dev . --hostname 0.0.0.0",
"start": "nuxt start",
"generate": "nuxt generate",
"open:electron": "cap open @capacitor-community/electron",
"build:electron": "cd electron && npm run electron:pack",
"build:electron-windows": "cd electron && npm run electron:build-windows",
"build:electron-mac": "cd electron && npm run electron:build-mac",
"build:electron-linux": "cd electron && npm run electron:build-linux"
},
"dependencies": {
"@bonfire-xmpp/verse": "^1.0.0",
"@msgpack/msgpack": "^2.4.1",
"@nuxtjs/style-resources": "^1.0.0",
"@webzlodimir/vue-bottom-sheet": "^1.2.0",
"core-js": "^3.8.3",
"dexie": "^3.0.3",
"electron-localshortcut": "^3.2.1",
"fuzzy-matching": "^0.4.3",
"long-press-event": "^2.4.2",
"lz4js": "^0.2.0",
"nuxt": "^2.14.12",
"simplebar-vue": "^1.6.3",
"vue-masonry-css": "^1.0.3"
},
"devDependencies": {
"@capacitor-community/electron": "^1.3.4",
"@capacitor/cli": "^2.4.6",
"@capacitor/core": "^2.4.6",
"@commitlint/cli": "^12.0.0",
"@commitlint/config-conventional": "^12.0.0",
"@linusborg/vue-simple-portal": "^0.1.5",
"@nuxtjs/device": "^2.0.1",
"@nuxtjs/vuetify": "^1.11.3",
"commitizen": "^4.2.3",
"cz-conventional-changelog": "^3.3.0",
"husky": "^5.1.1"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}