-
Notifications
You must be signed in to change notification settings - Fork 112
Expand file tree
/
Copy pathpackage.json
More file actions
73 lines (73 loc) · 2.27 KB
/
package.json
File metadata and controls
73 lines (73 loc) · 2.27 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
{
"name": "forms",
"version": "5.2.1",
"private": true,
"description": "Forms app for nextcloud",
"homepage": "https://github.com/nextcloud/forms#readme",
"bugs": {
"url": "https://github.com/nextcloud/forms/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/nextcloud/forms.git"
},
"license": "AGPL-3.0-or-later",
"type": "module",
"scripts": {
"build": "vite --mode production build",
"dev": "vite --mode development build",
"dev:watch": "NODE_OPTIONS='--max-old-space-size=4096' npx vite --mode development build --watch",
"format": "prettier --check .",
"format:fix": "prettier --write .",
"lint": "eslint --ext .js,.vue src",
"lint:fix": "eslint --ext .js,.vue src --fix",
"start:nextcloud": "node playwright/start-nextcloud-server.mjs",
"stylelint": "stylelint css/*.css css/*.scss src/**/*.vue",
"stylelint:fix": "stylelint css/*.css css/*.scss src/**/*.vue --fix"
},
"browserslist": [
"extends @nextcloud/browserslist-config"
],
"dependencies": {
"@nextcloud/auth": "^2.5.3",
"@nextcloud/axios": "^2.5.2",
"@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/logger": "^3.0.3",
"@nextcloud/moment": "^1.3.5",
"@nextcloud/router": "^3.1.0",
"@nextcloud/vue": "^8.36.0",
"debounce": "^3.0.0",
"markdown-it": "^14.1.1",
"p-queue": "^9.1.0",
"qrcode": "^1.5.4",
"v-click-outside": "^3.2.0",
"vue": "^2.7.16",
"vue-material-design-icons": "^5.3.1",
"vue-router": "^3.6.5",
"vuedraggable": "^2.24.3"
},
"devDependencies": {
"@mdi/js": "^7.4.47",
"@mdi/svg": "^7.4.47",
"@nextcloud/browserslist-config": "^3.1.2",
"@nextcloud/e2e-test-server": "^0.4.0",
"@nextcloud/eslint-config": "^9.0.0-rc.8",
"@nextcloud/prettier-config": "^1.2.0",
"@nextcloud/stylelint-config": "^3.2.1",
"@nextcloud/vite-config": "^1.7.2",
"@playwright/test": "^1.58.2",
"@vue/tsconfig": "^0.5.1",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-prettier": "^5.5.5",
"prettier": "^3.8.1",
"vite": "^7.3.1"
},
"engines": {
"node": "^24.0.0",
"npm": "^11.3.0"
}
}