-
Notifications
You must be signed in to change notification settings - Fork 13
Expand file tree
/
Copy pathpackage.json
More file actions
104 lines (104 loc) · 3.02 KB
/
package.json
File metadata and controls
104 lines (104 loc) · 3.02 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
{
"name": "officeonline",
"description": "Collabora online integration",
"version": "3.2.0-dev.0",
"authors": [
{
"name": "Julius Härtl",
"email": "jus@bitgrid.net",
"role": "Developer"
}
],
"license": "AGPL-3.0-or-later",
"private": true,
"scripts": {
"build": "NODE_ENV=production webpack --progress --config webpack.js",
"dev": "NODE_ENV=development webpack --progress --config webpack.js",
"watch": "NODE_ENV=development webpack --progress --watch --config webpack.js",
"lint": "eslint --ext .js,.vue src",
"lint:fix": "eslint --ext .js,.vue src --fix",
"stylelint": "stylelint src",
"stylelint:fix": "stylelint src --fix",
"test": "jest",
"test:coverage": "jest --coverage"
},
"dependencies": {
"@nextcloud/auth": "^2.5.3",
"@nextcloud/axios": "^2.5.2",
"@nextcloud/capabilities": "^1.2.1",
"@nextcloud/l10n": "^3.4.1",
"@nextcloud/router": "^3.1.0",
"@nextcloud/sharing": "^0.3.0",
"@nextcloud/vue": "^8.31.0",
"vue": "2.7"
},
"browserslist": [
"extends browserslist-config-nextcloud"
],
"engines": {
"node": "^24.0.0",
"npm": "^11.3.0"
},
"devDependencies": {
"@babel/core": "^7.28.6",
"@babel/plugin-syntax-dynamic-import": "^7.8.3",
"@babel/plugin-transform-runtime": "^7.28.5",
"@babel/polyfill": "^7.12.1",
"@babel/preset-env": "^7.28.5",
"@nextcloud/eslint-config": "^8.4.2",
"@nextcloud/eslint-plugin": "^2.2.1",
"@nextcloud/initial-state": "^3.0.0",
"@nextcloud/stylelint-config": "^3.1.1",
"@nextcloud/webpack-vue-config": "^6.3.2",
"@vue/test-utils": "^2.4.6",
"acorn": "^8.15.0",
"babel-core": "^7.0.0-bridge.0",
"babel-eslint": "^10.1.0",
"babel-jest": "^30.2.0",
"babel-loader": "^10.0.0",
"browserslist-config-nextcloud": "0.1.0",
"css-loader": "^7.1.2",
"file-loader": "^6.2.0",
"jest": "^30.2.0",
"jest-environment-jsdom-fourteen": "^1.0.1",
"jest-serializer-vue": "^3.1.0",
"prettier-eslint": "^16.4.2",
"raw-loader": "^4.0.2",
"style-loader": "^4.0.0",
"stylelint": "^16.26.1",
"stylelint-scss": "^6.14.0",
"stylelint-webpack-plugin": "^5.0.1",
"ts-loader": "^9.5.4",
"typescript": "^5.9.3",
"url-loader": "^4.1.1",
"vue-jest": "^3.0.7",
"vue-loader": "^17.4.2",
"vue-template-compiler": "2.7",
"webpack": "^5.104.1",
"webpack-cli": "^6.0.1",
"webpack-merge": "^6.0.1"
},
"jest": {
"verbose": true,
"testEnvironment": "jest-environment-jsdom-fourteen",
"moduleFileExtensions": [
"js",
"vue"
],
"moduleNameMapper": {
"^@/(.*)$": "<rootDir>/src/$1"
},
"testPathIgnorePatterns": [
"<rootDir>/src/tests/fixtures/",
"<rootDir>/build"
],
"transform": {
"^.+\\.js$": "<rootDir>/node_modules/babel-jest",
".*\\.(vue)$": "<rootDir>/node_modules/vue-jest"
},
"snapshotSerializers": [
"<rootDir>/node_modules/jest-serializer-vue"
],
"globalSetup": "<rootDir>/src/tests/setup.js"
}
}