-
Notifications
You must be signed in to change notification settings - Fork 64
Expand file tree
/
Copy pathpackage.json
More file actions
100 lines (100 loc) · 3.12 KB
/
package.json
File metadata and controls
100 lines (100 loc) · 3.12 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
{
"name": "viewer",
"version": "7.0.0-dev.0",
"private": true,
"description": "Simple file viewer with slideshow for media",
"keywords": [
"nextcloud",
"files",
"viewer",
"slideshow",
"modal",
"gallery"
],
"homepage": "https://github.com/nextcloud/viewer",
"bugs": {
"url": "https://github.com/nextcloud/viewer/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/nextcloud/viewer.git"
},
"license": "AGPL-3.0-or-later",
"author": "John Molakvoæ <skjnldsv@protonmail.com>",
"contributors": [
"John Molakvoæ <skjnldsv@protonmail.com>"
],
"type": "module",
"scripts": {
"build": "vite --mode production build",
"cypress": "npm run cypress:e2e",
"cypress:e2e": "cypress run --e2e",
"cypress:gui": "cypress open --e2e",
"cypress:update-snapshots": "cypress run --env visualRegressionType=base --spec cypress/e2e/visual-regression.cy.ts --config screenshotsFolder=cypress/snapshots/base",
"cypress:visual-regression": "cypress run --spec cypress/e2e/visual-regression.cy.ts",
"dev": "export NODE_ENV=development; vite --mode development build",
"lint": "eslint cypress src",
"lint:fix": "eslint cypress src --fix",
"stylelint": "stylelint src",
"stylelint:fix": "stylelint src --fix",
"watch": "export NODE_ENV=development; vite --mode development build --watch"
},
"browserslist": [
"extends @nextcloud/browserslist-config"
],
"dependencies": {
"@fontsource/roboto": "^5.2.6",
"@mdi/svg": "^7.4.47",
"@nextcloud/auth": "^2.5.2",
"@nextcloud/axios": "^2.5.2",
"@nextcloud/dialogs": "^6.4.2",
"@nextcloud/event-bus": "^3.3.2",
"@nextcloud/files": "^4.0.0",
"@nextcloud/initial-state": "^2.2.0",
"@nextcloud/l10n": "^3.4.0",
"@nextcloud/logger": "^3.0.2",
"@nextcloud/paths": "^2.2.1",
"@nextcloud/router": "^3.0.1",
"@nextcloud/typings": "^1.9.1",
"@nextcloud/vue": "^8.28.0",
"@skjnldsv/vue-plyr": "^7.5.0",
"camelcase": "^8.0.0",
"debounce": "^2.2.0",
"dompurify": "^3.3.0",
"filerobot-image-editor": "^4.8.1",
"nextcloud-server": "^0.15.10",
"path-parse": "^1.0.7",
"react": "^18.3.1",
"react-filerobot-image-editor": "^4.8.1",
"react-konva": "^18.2.10",
"vue": "^2.7.16",
"vue-async-computed": "^3.9.0",
"vue-material-design-icons": "^5.3.1",
"webdav": "^5.7.1"
},
"devDependencies": {
"@nextcloud/browserslist-config": "^3.0.1",
"@nextcloud/cypress": "^1.0.0-beta.15",
"@nextcloud/eslint-config": "^8.4.2",
"@nextcloud/sharing": "^0.2.5",
"@nextcloud/stylelint-config": "^3.1.0",
"@nextcloud/vite-config": "^1.5.6",
"@testing-library/cypress": "^10.1.0",
"@types/dockerode": "^3.3.43",
"@vue/tsconfig": "^0.5.1",
"cypress": "^13.17.0",
"cypress-split": "^1.24.22",
"cypress-visual-regression": "^5.3.0",
"dockerode": "^4.0.7",
"eslint-plugin-cypress": "^3.6.0",
"ts-node": "^10.9.2",
"tslib": "^2.8.1",
"typescript": "^5.9.2",
"vite": "^5.4.19",
"vite-plugin-static-copy": "^3.1.2"
},
"engines": {
"node": "^24.0.0",
"npm": "^11.3.0"
}
}