-
Notifications
You must be signed in to change notification settings - Fork 34
Expand file tree
/
Copy pathpackage.json
More file actions
83 lines (83 loc) · 2.74 KB
/
package.json
File metadata and controls
83 lines (83 loc) · 2.74 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
{
"name": "tables",
"description": "Manage data within tables.",
"version": "2.0.0",
"author": "Florian Steffens <florian.steffens@nextcloud.com",
"bugs": {
"url": "https://github.com/nextcloud/tables/issues"
},
"repository": {
"url": "https://github.com/nextcloud/tables",
"type": "git"
},
"type": "module",
"url": "https://github.com/nextcloud/tables/wiki",
"license": "agpl",
"private": true,
"scripts": {
"build": "vite --mode production build",
"dev": "vite --mode development build",
"watch": "vite --mode development build --watch",
"typescript:check": "tsc --noEmit",
"typescript:generate": "npx openapi-typescript ./openapi.json --immutable -t -o src/types/openapi/openapi.ts",
"lint": "ESLINT_USE_FLAT_CONFIG=false eslint --ext .js,.vue src",
"lint:fix": "ESLINT_USE_FLAT_CONFIG=false 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",
"tests": "npx cypress run",
"tests:component": "npx cypress run --component"
},
"dependencies": {
"@mdi/svg": "^7.4.47",
"@nextcloud/auth": "^2.5.3",
"@nextcloud/axios": "^2.5.2",
"@nextcloud/capabilities": "^1.2.1",
"@nextcloud/dialogs": "^7.2.0",
"@nextcloud/event-bus": "^3.3.3",
"@nextcloud/files": "^4.0.0",
"@nextcloud/initial-state": "^3.0.0",
"@nextcloud/l10n": "^3.4.1",
"@nextcloud/moment": "^1.3.5",
"@nextcloud/router": "^3.1.0",
"@nextcloud/vue": "^8.36.0",
"@tiptap/extension-character-count": "^3.13.0",
"@tiptap/extension-task-item": "^3.13.0",
"@tiptap/extension-task-list": "^3.13.0",
"@tiptap/starter-kit": "^3.13.0",
"@tiptap/vue-2": "^3.13.0",
"@vueuse/core": "^11.3.0",
"debounce": "^3.0.0",
"dompurify": "^3.3.1",
"pinia": "^2.3.1",
"vue": "^2.7.16",
"vue-infinite-loading": "^2.4.5",
"vue-material-design-icons": "^5.3.1",
"vue-papa-parse": "^3.1.0",
"vue-router": "^3.6.5"
},
"browserslist": [
"extends @nextcloud/browserslist-config"
],
"engines": {
"node": "^24.0.0",
"npm": "^11.3.0"
},
"devDependencies": {
"@nextcloud/babel-config": "^1.3.0",
"@nextcloud/browserslist-config": "^3.1.2",
"@nextcloud/cypress": "^1.0.0-beta.7",
"@nextcloud/eslint-config": "^8.4.2",
"@nextcloud/stylelint-config": "^3.1.1",
"@nextcloud/vite-config": "^1.7.0",
"@vue/tsconfig": "^0.5.1",
"cypress": "^13.6.4",
"cypress-downloadfile": "^1.2.4",
"cypress-vite": "^1.8.0",
"openapi-typescript": "^7.13.0",
"typescript": "^5.3.3",
"vite": "^7.3.1"
},
"optionalDependencies": {
"@rollup/rollup-linux-x64-gnu": "^4.53.3"
}
}