-
Notifications
You must be signed in to change notification settings - Fork 14
/
Copy pathpackage.json
90 lines (90 loc) · 3.21 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
{
"name": "research-helper",
"version": "3.3.0-beta",
"description": "A paper / book / note management tool",
"productName": "Research Helper",
"author": "Hunt Feng <[email protected]>",
"private": false,
"license": "AGPL-3.0",
"scripts": {
"lint": "eslint --ext .js,.ts,.vue ./",
"format": "prettier --write \"**/*.{js,ts,vue,scss,html,md,json}\" --ignore-path .gitignore",
"test": "echo \"See package.json => scripts for available tests.\" && exit 0",
"dev": "yarn run pouchdb-server --port 3000 -d remote_database & quasar dev -m electron",
"debug": "quasar build -m electron --debug",
"build": "quasar build -m electron",
"test:ci": "yarn run test:unit:ci && yarn run test:component:ci",
"test:unit": "vitest --no-threads",
"test:unit:ci": "vitest run --no-threads",
"posttest:unit:ci": "rm -rf mydb*",
"test:e2e": "cross-env NODE_ENV=test start-test \"quasar dev\" http-get://localhost:9000 \"cypress open --e2e\"",
"test:e2e:ci": "cross-env NODE_ENV=test start-test \"quasar dev\" http-get://localhost:9000 \"cypress run --e2e\"",
"test:component": "cross-env NODE_ENV=test cypress open --component",
"test:component:ci": "cross-env NODE_ENV=test cypress run --component"
},
"dependencies": {
"@citation-js/plugin-isbn": "^0.3.1",
"@electron/remote": "^2.0.8",
"@excalidraw/excalidraw": "^0.15.2",
"@quasar/extras": "^1.15.8",
"axios": "^0.21.1",
"citation-js": "^0.6.5",
"cytoscape": "^3.26.0",
"cytoscape-cola": "^2.5.1",
"electron-updater": "^5.3.0",
"events": "^3.3.0",
"golden-layout": "^2.6.0",
"konva": "^9.2.0",
"nanoid": "^5.0.3",
"nodejs-file-downloader": "^4.11.2",
"pdfjs-dist": "^3.7.107",
"pinia": "^2.0.11",
"pouchdb": "^7.3.1",
"pouchdb-find": "^7.3.1",
"quasar": "^2.11.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"vditor": "^3.9.5",
"veaury": "^2.3.12",
"vue": "^3.0.0",
"vue-i18n": "^9.0.0",
"vue-router": "^4.0.0"
},
"devDependencies": {
"@intlify/vite-plugin-vue-i18n": "^3.3.1",
"@quasar/app-vite": "^1.0.0",
"@quasar/quasar-app-extension-testing": "^2.1.0",
"@quasar/quasar-app-extension-testing-e2e-cypress": "^5.1.0",
"@quasar/quasar-app-extension-testing-unit-vitest": "^0.1.0",
"@types/cytoscape": "^3.19.9",
"@types/lodash": "^4.14.197",
"@types/node": "^12.20.21",
"@types/pouchdb": "^6.4.0",
"@types/react": "^18.2.0",
"@types/react-dom": "^18.2.3",
"@typescript-eslint/eslint-plugin": "^5.10.0",
"@typescript-eslint/parser": "^5.10.0",
"@vitejs/plugin-react": "1.3.2",
"@vitejs/plugin-vue": "2.3.3",
"@vitejs/plugin-vue-jsx": "1.3",
"@vue/test-utils": "^2.0.0",
"autoprefixer": "^10.4.2",
"cypress": "^12.2.0",
"electron": "^23.1.4",
"electron-builder": "^23.6.0",
"electron-packager": "^15.2.0",
"eslint": "^8.10.0",
"eslint-config-prettier": "^8.1.0",
"eslint-plugin-cypress": "^2.12.1",
"eslint-plugin-vue": "^9.0.0",
"pouchdb-server": "^4.2.0",
"prettier": "^2.5.1",
"typescript": "^4.5.4",
"vitest": "^0.15.0"
},
"engines": {
"node": "^20 || ^18 || ^16 || ^14.19",
"npm": ">= 6.13.4",
"yarn": ">= 1.21.1"
}
}