forked from baggachipz/tinylist
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
63 lines (63 loc) · 1.77 KB
/
package.json
File metadata and controls
63 lines (63 loc) · 1.77 KB
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
{
"name": "tinylist",
"version": "1.0.0",
"description": "A privacy-focused PWA notes/checklists application that syncs instantly across devices.",
"productName": "TinyList",
"author": "Matt Curtis <matt@curtii.com>",
"private": true,
"scripts": {
"lint": "eslint --ext .js,.vue ./",
"dev": "quasar dev -m pwa",
"test": "echo \"No test specified\" && exit 0"
},
"dependencies": {
"@quasar/extras": "^1.13.5",
"core-js": "^3.22.0",
"file-saver": "^2.0.5",
"jszip": "^3.9.1",
"markdown-it": "^12.3.2",
"node-fetch": "^2.6.7",
"node-polyfill-webpack-plugin": "^4.1.0",
"pouchdb": "^7.3.0",
"pouchdb-find": "^7.3.0",
"pouchdb-quick-search": "^1.3.0",
"qrcode-svg": "^1.1.0",
"quasar": "^2.18.1",
"stylus": "^0.64.0",
"stylus-loader": "^8.1.1",
"vue": "^3.5.13",
"vue-draggable-next": "^2.2.1",
"vue-router": "^4.5.0"
},
"devDependencies": {
"@babel/eslint-parser": "^7.13.14",
"@quasar/app-webpack": "^3.15.1",
"eslint": "^8.11.0",
"eslint-config-standard": "^17.0.0",
"eslint-plugin-import": "^2.19.1",
"eslint-plugin-n": "^15.0.0",
"eslint-plugin-promise": "^6.0.0",
"eslint-plugin-quasar": "^1.0.0",
"eslint-plugin-vue": "^9.0.0",
"eslint-webpack-plugin": "^3.1.1",
"pouchdb-debug": "^7.2.1",
"strip-ansi": "^6.0.1",
"workbox-webpack-plugin": "^6.5.3"
},
"browserslist": [
"last 10 Chrome versions",
"last 10 Firefox versions",
"last 4 Edge versions",
"last 7 Safari versions",
"last 8 Android versions",
"last 8 ChromeAndroid versions",
"last 8 FirefoxAndroid versions",
"last 10 iOS versions",
"last 5 Opera versions"
],
"engines": {
"node": ">= 10.18.1",
"npm": ">= 6.13.4",
"yarn": ">= 1.21.1"
}
}