forked from nextcloud/photos
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
108 lines (108 loc) 路 3.17 KB
/
Copy pathpackage.json
File metadata and controls
108 lines (108 loc) 路 3.17 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
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
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
{
"name": "photos",
"version": "9.0.0-dev.0",
"private": true,
"description": "Your memories under your control",
"keywords": [
"nextcloud",
"photos",
"app"
],
"homepage": "https://github.com/nextcloud/photos",
"bugs": {
"url": "https://github.com/nextcloud/photos/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/nextcloud/photos"
},
"license": "AGPL-3.0-or-later",
"author": "Nextcloud GmbH and Nextcloud contributors",
"contributors": [
"John Molakvo忙 <skjnldsv@protonmail.com>"
],
"type": "module",
"scripts": {
"build": "vite --mode production build",
"dev": "export NODE_ENV=development; vite --mode development build",
"lint": "eslint",
"lint:fix": "eslint --fix",
"playwright": "playwright test --project default",
"playwright:faces": "playwright test --project faces",
"playwright:install": "playwright install chromium",
"stylelint": "stylelint src",
"stylelint:fix": "stylelint src --fix",
"test": "TZ=CET NODE_ENV=test vitest run",
"test:coverage": "TZ=CET NODE_ENV=test vitest --coverage run",
"ts:check": "vue-tsc --noEmit",
"watch": "export NODE_ENV=development; vite --mode development build --watch"
},
"browserslist": [
"extends @nextcloud/browserslist-config"
],
"dependencies": {
"@essentials/request-timeout": "^1.3.0",
"@mdi/svg": "^7.4.47",
"@nextcloud/auth": "^2.1.0",
"@nextcloud/axios": "^2.1.0",
"@nextcloud/dialogs": "^7.4.1",
"@nextcloud/event-bus": "^3.1.0",
"@nextcloud/files": "^4.0.0",
"@nextcloud/initial-state": "^3.0.0",
"@nextcloud/l10n": "^3.4.1",
"@nextcloud/logger": "^3.0.2",
"@nextcloud/paths": "^3.1.0",
"@nextcloud/router": "^3.0.1",
"@nextcloud/sharing": "^0.4.0",
"@nextcloud/typings": "^1.9.1",
"@nextcloud/upload": "^1.0.4",
"@nextcloud/vue": "^8.41.0",
"axios": "^1.12.1",
"camelcase": "^9.0.0",
"debounce": "^2.2.0",
"he": "^1.2.0",
"leaflet": "^1.9.4",
"path-posix": "^1.0.0",
"pinia": "^2.3.1",
"qs": "^6.16.0",
"url-parse": "^1.5.10",
"vue": "^2.7.14",
"vue-material-design-icons": "^5.3.1",
"vue-router": "^3.6.5",
"vue-template-compiler": "^2.7.14",
"vue2-leaflet": "^2.7.1",
"vuex": "^3.6.2",
"vuex-router-sync": "^5.0.0",
"webdav": "^5.5.0"
},
"devDependencies": {
"@nextcloud/babel-config": "^1.3.0",
"@nextcloud/browserslist-config": "^3.1.2",
"@nextcloud/e2e-test-server": "^0.6.0",
"@nextcloud/eslint-config": "^9.0.1",
"@nextcloud/stylelint-config": "^3.1.0",
"@nextcloud/vite-config": "^1.7.0",
"@playwright/test": "^1.62.1",
"@types/dockerode": "^4.0.1",
"@vitest/coverage-v8": "^4.1.11",
"@vue/test-utils": "^1.3.6",
"@vue/tsconfig": "^0.5.1",
"autoprefixer": "^10.5.4",
"dockerode": "^5.0.1",
"eslint": "^10.9.1",
"happy-dom": "^20.12.2",
"postcss": "^8.5.25",
"ts-node": "^10.9.2",
"tslib": "^2.8.1",
"typescript": "^5.9.2",
"vite": "^7.3.6",
"vite-plugin-pwa": "^1.3.0",
"vitest": "^4.1.10",
"vue-tsc": "^2.2.12",
"wait-on": "^9.1.0"
},
"engines": {
"node": "^24.0.0",
"npm": "^11.3.0"
}
}