forked from nextcloud/viewer
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
98 lines (98 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
93
94
95
96
97
98
{
"name": "viewer",
"description": "Simple file viewer with slideshow for media",
"version": "2.2.0",
"author": "John Molakvoæ <[email protected]>",
"contributors": [
"John Molakvoæ <[email protected]>"
],
"keywords": [
"nextcloud",
"files",
"viewer",
"slideshow",
"modal",
"gallery"
],
"bugs": {
"url": "https://github.com/nextcloud/viewer/issues"
},
"repository": {
"url": "git+https://github.com/nextcloud/viewer.git",
"type": "git"
},
"homepage": "https://github.com/nextcloud/viewer",
"license": "agpl",
"private": true,
"scripts": {
"build": "webpack --node-env production --progress",
"dev": "webpack --node-env development --progress",
"watch": "webpack --node-env development --progress --watch",
"stats": "webpack --node-env production --json webpack-stats.json",
"lint": "eslint cypress src",
"lint:fix": "eslint cypress src --fix",
"stylelint": "stylelint src",
"stylelint:fix": "stylelint src --fix",
"cypress": "npm run cypress:e2e",
"cypress:e2e": "cypress run --e2e",
"cypress:gui": "cypress open --e2e",
"cypress:pre-snapshots": "TESTING=true npm run dev",
"cypress:visual-regression": "npm run cypress:pre-snapshots && cypress run --spec cypress/e2e/visual-regression.cy.js",
"cypress:update-snapshots": "npm run cypress:pre-snapshots && cypress run --env type=base --spec cypress/e2e/visual-regression.cy.js --config screenshotsFolder=cypress/snapshots/base"
},
"dependencies": {
"@fontsource/roboto": "^5.0.3",
"@nextcloud/auth": "^2.1.0",
"@nextcloud/axios": "^2.3.0",
"@nextcloud/dialogs": "^4.1.0",
"@nextcloud/event-bus": "^3.1.0",
"@nextcloud/files": "^3.0.0-beta.10",
"@nextcloud/initial-state": "^2.0.0",
"@nextcloud/l10n": "^2.1.0",
"@nextcloud/logger": "^2.5.0",
"@nextcloud/paths": "^2.1.0",
"@nextcloud/router": "^2.1.2",
"@nextcloud/typings": "^1.7.0",
"@nextcloud/vue": "^8.0.0-beta.2",
"@skjnldsv/vue-plyr": "^7.3.1",
"camelcase": "^7.0.1",
"debounce": "^1.2.1",
"filerobot-image-editor": "^4.5.0",
"nextcloud-server": "^0.15.10",
"path-parse": "^1.0.7",
"vue": "^2.7.14",
"vue-async-computed": "^3.9.0",
"vue-material-design-icons": "^5.2.0",
"webdav": "^5.2.2"
},
"browserslist": [
"extends @nextcloud/browserslist-config"
],
"engines": {
"node": "^20.0.0",
"npm": "^9.0.0"
},
"devDependencies": {
"@babel/plugin-proposal-class-properties": "^7.18.6",
"@cypress/browserify-preprocessor": "^3.0.2",
"@nextcloud/babel-config": "^1.0.0",
"@nextcloud/browserslist-config": "^2.3.0",
"@nextcloud/cypress": "^1.0.0-beta.2",
"@nextcloud/eslint-config": "^8.3.0-beta.0",
"@nextcloud/stylelint-config": "^2.3.0",
"@nextcloud/webpack-vue-config": "^5.5.1",
"@types/dockerode": "^3.3.19",
"@vue/tsconfig": "^0.4.0",
"babel-loader-exclude-node-modules-except": "^1.2.1",
"cypress": "^12.16.0",
"cypress-visual-regression": "^3.0.0",
"dockerode": "^3.3.5",
"eslint-plugin-cypress": "^2.13.3",
"jest": "^29.5.0",
"ts-loader": "^9.4.4",
"ts-node": "^10.9.1",
"tslib": "^2.6.0",
"typescript": "^5.1.5",
"wait-on": "^7.0.1"
}
}