forked from nextcloud/activity
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
84 lines (84 loc) · 2.73 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
{
"name": "activity",
"description": "This application enables people to view a log of activities about them or about files.",
"version": "3.0.0",
"author": "Julius Härtl <jus@bitgrid.net>",
"contributors": [],
"bugs": {
"url": "https://github.com/nextcloud/activity/issues"
},
"repository": {
"url": "https://github.com/nextcloud/activity",
"type": "git"
},
"homepage": "https://github.com/nextcloud/activity",
"license": "agpl",
"private": true,
"type": "module",
"scripts": {
"build": "vite --mode production build",
"dev": "vite --mode development build",
"watch": "vite --mode development build --watch",
"lint": "eslint --ext .js,.vue src",
"lint:fix": "eslint --ext .js,.vue src --fix",
"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",
"cypress": "npm run cypress:component && npm run cypress:e2e",
"cypress:component": "cypress run --component",
"cypress:e2e": "cypress run --e2e",
"cypress:gui": "cypress open",
"precypress:update-snapshots": "TESTING=true npm run dev"
},
"engines": {
"node": "^20.0.0",
"npm": "^10.0.0"
},
"browserslist": [
"extends @nextcloud/browserslist-config"
],
"dependencies": {
"@mdi/svg": "^7.4.47",
"@nextcloud/auth": "^2.2.1",
"@nextcloud/axios": "^2.4.0",
"@nextcloud/dialogs": "^5.3.1",
"@nextcloud/initial-state": "^2.1.0",
"@nextcloud/l10n": "^3.1.0",
"@nextcloud/logger": "^3.0.1",
"@nextcloud/moment": "^1.3.1",
"@nextcloud/paths": "^2.1.0",
"@nextcloud/router": "^3.0.1",
"@nextcloud/vue": "^8.14.0",
"@vueuse/core": "^10.7.1",
"vue": "^2.7.16",
"vue-frag": "^1.4.3",
"vue-material-design-icons": "^5.3.0",
"vue-router": "^3.6.5",
"vuex": "^3.6.2"
},
"devDependencies": {
"@nextcloud/browserslist-config": "^3.0.0",
"@nextcloud/cypress": "^1.0.0-beta.8",
"@nextcloud/eslint-config": "^8.4.1",
"@nextcloud/stylelint-config": "^2.4.0",
"@nextcloud/vite-config": "^1.2.3",
"@testing-library/vue": "^5.9.0",
"@types/dockerode": "^3.3.29",
"@vitest/coverage-v8": "^2.0.2",
"@vue/test-utils": "^1.3.6",
"@vue/tsconfig": "^0.5.1",
"cypress": "^13.13.0",
"cypress-visual-regression": "^5.0.0",
"cypress-vite": "^1.5.0",
"cypress-wait-until": "^3.0.1",
"dockerode": "^4.0.2",
"eslint-plugin-cypress": "^3.2.0",
"happy-dom": "^14.12.3",
"typescript": "^5.4.5",
"vite": "^5.2.3",
"vitest": "^2.0.2",
"vue-template-compiler": "^2.7.16",
"wait-on": "^7.2.0"
}
}