-
Notifications
You must be signed in to change notification settings - Fork 41
Expand file tree
/
Copy pathpackage.json
More file actions
90 lines (90 loc) · 3.51 KB
/
package.json
File metadata and controls
90 lines (90 loc) · 3.51 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
{
"name": "tables",
"description": "Manage data within tables.",
"version": "2.1.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-3.0-or-later",
"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,.ts,.mjs src playwright cypress/e2e cypress/support/e2e.js",
"lint:fix": "ESLINT_USE_FLAT_CONFIG=false eslint --ext .js,.vue,.ts,.mjs src playwright cypress/e2e cypress/support/e2e.js --fix",
"stylelint": "stylelint 'css/*.css' 'css/*.scss' 'src/**/*.scss' 'src/**/*.vue'",
"stylelint:fix": "stylelint 'css/*.css' 'css/*.scss' 'src/**/*.scss' 'src/**/*.vue' --fix",
"tests:component": "cypress run --component",
"test:e2e": "playwright test",
"test:e2e:cypress": "cypress run --browser chrome --no-runner-ui --spec cypress/e2e/context-navigation-hidden.cy.js,cypress/e2e/context-navigation-shared.cy.js,cypress/e2e/tables-import.cy.js,cypress/e2e/tables-table.cy.js,cypress/e2e/view-filtering-selection-row-checked.cy.js,cypress/e2e/view-filtering-selection-row-unchecked.cy.js,cypress/e2e/view-filtering-selection-row-removal.cy.js",
"test:e2e:ui": "playwright test --ui",
"test:e2e:report": "playwright show-report",
"start:nextcloud": "node playwright/start-nextcloud-server.mjs"
},
"dependencies": {
"@mdi/svg": "^7.4.47",
"@nextcloud/auth": "^2.6.0",
"@nextcloud/axios": "^2.5.2",
"@nextcloud/capabilities": "^1.2.1",
"@nextcloud/dialogs": "^7.3.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.37.0",
"@tiptap/extension-character-count": "^3.22.4",
"@tiptap/extension-task-item": "^3.22.4",
"@tiptap/extension-task-list": "^3.22.4",
"@tiptap/starter-kit": "^3.22.4",
"@tiptap/vue-2": "^3.22.4",
"@vueuse/core": "^11.3.0",
"debounce": "^3.0.0",
"dompurify": "^3.4.0",
"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": {
"@cypress/vue2": "^2.1.1",
"@nextcloud/babel-config": "^1.3.0",
"@nextcloud/browserslist-config": "^3.1.2",
"@nextcloud/cypress": "^1.1.0",
"@nextcloud/e2e-test-server": "^0.4.0",
"@nextcloud/eslint-config": "^8.4.2",
"@nextcloud/stylelint-config": "^3.1.1",
"@nextcloud/vite-config": "^1.7.2",
"@playwright/test": "^1.59.1",
"@vue/tsconfig": "^0.5.1",
"cypress": "^15.14.1",
"cypress-downloadfile": "^1.2.4",
"cypress-vite": "^1.8.0",
"openapi-typescript": "^7.13.0",
"typescript": "^5.3.3",
"vite": "^7.3.2"
},
"optionalDependencies": {
"@rollup/rollup-linux-x64-gnu": "^4.60.2"
}
}