-
-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
92 lines (92 loc) · 3.22 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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
{
"name": "offpim",
"version": "0.6.0",
"private": true,
"description": "Personal Information Manager using PouchDB/CouchDB",
"author": "Christoffer Lybekk",
"scripts": {
"serve": "vue-cli-service serve",
"build": "vue-cli-service build",
"lint": "vue-cli-service lint",
"capacitor:build": "vue-cli-service capacitor:build",
"capacitor:serve": "vue-cli-service capacitor:serve",
"capacitor:build:android": "vue-cli-service capacitor:build --android",
"capacitor:serve:android": "vue-cli-service capacitor:serve --android",
"dist": "vue-cli-service electron:build --publish=never",
"docs:build": "bundle exec jekyll build",
"docs:dev": "bundle exec jekyll serve",
"electron:build": "vue-cli-service electron:build",
"electron:generate-icons": "electron-icon-builder --input=./public/icon.png --output=build --flatten",
"electron:serve": "vue-cli-service electron:serve",
"pack": "vue-cli-service electron:build --dir",
"postinstall": "electron-builder install-app-deps",
"postuninstall": "electron-builder install-app-deps"
},
"main": "background.js",
"dependencies": {
"@capacitor/android": "^2.0.0",
"@capacitor/cli": "^2.0.0",
"@capacitor/core": "^2.0.0",
"chart.js": "^2.9.3",
"core-js": "^3.6.5",
"debug": "^4.2.0",
"file-saver": "^2.0.2",
"leaflet": "^1.6.0",
"lunr": "^2.3.8",
"minify-css-string": "^1.0.0",
"nano": "^8.2.2",
"nord": "^0.2.1",
"pouchdb": "^7.2.1",
"pouchdb-authentication": "^1.1.3",
"pouchdb-browser": "^7.2.1",
"pouchdb-debug": "^7.2.1",
"pouchdb-find": "^7.2.1",
"pouchdb-live-find": "^0.4.0",
"register-service-worker": "^1.7.1",
"vcards-js": "^2.10.0",
"vue": "^2.6.10",
"vue-chartjs": "^3.5.0",
"vue-router": "^3.3.4",
"vuetify": "^2.3.3",
"vuex": "^3.5.1"
},
"devDependencies": {
"@mdi/font": "^4.9.95",
"@nklayman/vue-cli-plugin-capacitor": "~0.4.0",
"@vue/cli-plugin-babel": "^4.4.6",
"@vue/cli-plugin-eslint": "^4.4.6",
"@vue/cli-plugin-pwa": "^4.4.6",
"@vue/cli-plugin-router": "^4.4.6",
"@vue/cli-plugin-vuex": "^4.4.6",
"@vue/cli-service": "^4.4.6",
"babel-eslint": "^10.1.0",
"electron": "^9.4.0",
"electron-icon-builder": "^1.0.2",
"eslint": "^5.16.0",
"eslint-plugin-vue": "^5.0.0",
"node-sass": "^4.14.0",
"pug": "^3.0.1",
"pug-plain-loader": "^1.0.0",
"sass": "^1.26.9",
"sass-loader": "^8.0.2",
"vue-cli-plugin-electron-builder": "^1.4.6",
"vue-cli-plugin-vuetify": "^2.0.6",
"vue-template-compiler": "^2.6.10",
"vuetify-loader": "^1.5.0"
},
"bugs": {
"url": "https://github.com/lybekk/offpim/issues"
},
"homepage": "https://github.com/lybekk/offpim#readme",
"keywords": [
"pim",
"pouchdb",
"couchdb",
"nosql"
],
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/lybekk/offpim.git"
}
}