-
Notifications
You must be signed in to change notification settings - Fork 102
Expand file tree
/
Copy pathpackage.json
More file actions
79 lines (79 loc) Β· 2.57 KB
/
package.json
File metadata and controls
79 lines (79 loc) Β· 2.57 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
{
"name": "groupfolders",
"version": "22.0.0-dev.0",
"type": "module",
"scripts": {
"build": "NODE_ENV=production vite --mode production build",
"cypress": "npm run cypress:e2e",
"cypress:e2e": "cypress run --e2e",
"cypress:gui": "cypress open",
"dev": "NODE_ENV=development vite --mode development build",
"lint": "eslint",
"lint:fix": "eslint --fix",
"stylelint": "stylelint src/**/*.scss src/**/*.vue",
"stylelint:fix": "stylelint src/**/*.scss src/**/*.vue --fix",
"typescript:generate": "npx openapi-typescript ./openapi.json -t -o src/types/openapi/openapi.ts",
"watch": "NODE_ENV=development vite --mode development build --watch"
},
"dependencies": {
"@mdi/js": "^7.4.47",
"@mdi/svg": "^7.4.47",
"@nextcloud/auth": "^2.5.2",
"@nextcloud/axios": "^2.5.2",
"@nextcloud/dialogs": "^7.3.0",
"@nextcloud/event-bus": "^3.3.1",
"@nextcloud/files": "^4.0.0",
"@nextcloud/initial-state": "^3.0.0",
"@nextcloud/l10n": "^3.3.0",
"@nextcloud/logger": "^3.0.2",
"@nextcloud/password-confirmation": "^6.0.2",
"@nextcloud/paths": "^3.0.0",
"@nextcloud/router": "^3.0.1",
"@nextcloud/sharing": "^0.4.0",
"@nextcloud/vue": "^9.4.0",
"nextcloud-server": "^0.15.10",
"oc-react-components": "^0.2.1",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-flip-move": "^3.0.5",
"react-select": "^5.10.2",
"vue": "^3.5.27",
"vue-material-design-icons": "^5.3.1",
"webdav": "^5.8.0"
},
"devDependencies": {
"@babel/preset-react": "^7.27.1",
"@nextcloud/babel-config": "^1.2.0",
"@nextcloud/browserslist-config": "^3.0.1",
"@nextcloud/e2e-test-server": "^0.4.0",
"@nextcloud/eslint-config": "^8.4.2",
"@nextcloud/stylelint-config": "^3.2.1",
"@nextcloud/typings": "^1.9.1",
"@nextcloud/vite-config": "^2.5.2",
"@testing-library/cypress": "^10.1.0",
"@types/bootstrap": "^5.2.10",
"@types/react": "^17.0.43",
"@types/react-dom": "^17.0.0",
"@vitejs/plugin-react": "^5.1.2",
"@vue/test-utils": "^2.4.6",
"@vue/tsconfig": "^0.8.1",
"cypress": "^15.10.0",
"cypress-split": "^1.24.28",
"cypress-visual-regression": "^5.3.0",
"cypress-vite": "^1.8.0",
"cypress-wait-until": "^3.0.2",
"eslint": "^8.57.1",
"eslint-plugin-cypress": "^3.5.0",
"eslint-plugin-react": "^7.37.5",
"openapi-typescript": "^7.9.1",
"react-hot-loader": "4.13.1",
"ts-node": "^10.9.2",
"tslib": "^2.8.1",
"typescript": "^5.9.3",
"vite": "^7.3.1"
},
"engines": {
"node": "^24.0.0",
"npm": "^11.3.0"
}
}