-
Notifications
You must be signed in to change notification settings - Fork 69
Expand file tree
/
Copy pathpackage.json
More file actions
87 lines (87 loc) · 2.81 KB
/
package.json
File metadata and controls
87 lines (87 loc) · 2.81 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
{
"name": "activity",
"version": "7.0.0-dev.0",
"private": true,
"description": "This application enables people to view a log of activities about them or about files.",
"homepage": "https://github.com/nextcloud/activity",
"bugs": {
"url": "https://github.com/nextcloud/activity/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/nextcloud/activity"
},
"license": "AGPL-3.0-or-later",
"author": "Julius Härtl <jus@bitgrid.net>",
"contributors": [],
"type": "module",
"scripts": {
"build": "vite --mode production build",
"cypress": "npm run cypress:component && npm run cypress:e2e",
"cypress:component": "cypress run --component",
"cypress:e2e": "cypress run --e2e",
"cypress:gui": "cypress open",
"dev": "export NODE_ENV=development; vite --mode development build",
"lint": "eslint --ext .js,.vue src",
"lint:fix": "eslint --ext .js,.vue src --fix",
"precypress:update-snapshots": "TESTING=true npm run dev",
"stylelint": "stylelint css/*.css css/*.scss src/**/*.scss src/**/*.vue",
"stylelint:fix": "stylelint css/*.css css/*.scss src/**/*.scss src/**/*.vue --fix",
"test": "TZ=CET NODE_ENV=test vitest run",
"test:coverage": "TZ=CET NODE_ENV=test vitest --coverage run",
"watch": "export NODE_ENV=development; vite --mode development build --watch"
},
"browserslist": [
"extends @nextcloud/browserslist-config"
],
"overrides": {
"vite": {
"rollup": "v4.40.1"
}
},
"dependencies": {
"@mdi/svg": "^7.4.47",
"@nextcloud/auth": "^2.5.3",
"@nextcloud/axios": "^2.5.0",
"@nextcloud/dialogs": "^7.3.0",
"@nextcloud/eslint-config": "^9.0.0-rc.8",
"@nextcloud/files": "^4.0.0",
"@nextcloud/initial-state": "^3.0.0",
"@nextcloud/l10n": "^3.4.1",
"@nextcloud/logger": "^3.0.3",
"@nextcloud/moment": "^1.3.5",
"@nextcloud/paths": "^3.1.0",
"@nextcloud/router": "^3.1.0",
"@nextcloud/vue": "^9.5.0",
"@vueuse/core": "^14.2.0",
"vue": "^3.5.29",
"vue-material-design-icons": "^5.3.1",
"vue-router": "^5.0.3",
"vuex": "^4.1.0"
},
"devDependencies": {
"@nextcloud/browserslist-config": "^3.1.2",
"@nextcloud/cypress": "^1.0.0-beta.15",
"@nextcloud/stylelint-config": "^3.2.1",
"@nextcloud/vite-config": "^2.5.2",
"@testing-library/cypress": "^10.1.0",
"@types/dockerode": "^4.0.1",
"@vitest/coverage-v8": "^4.0.18",
"@vue/test-utils": "^2.4.6",
"@vue/tsconfig": "^0.8.1",
"cypress-vite": "^1.8.0",
"cypress-wait-until": "^3.0.2",
"dockerode": "^4.0.9",
"eslint-plugin-cypress": "^6.1.0",
"happy-dom": "^20.7.0",
"stylelint": "^17.4.0",
"typescript": "^5.9.3",
"vite": "^7.3.1",
"vitest": "^4.0.18",
"wait-on": "^9.0.4"
},
"engines": {
"node": "^24.0.0",
"npm": "^11.3.0"
}
}