forked from nextcloud/forms
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
70 lines (70 loc) · 2.05 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
{
"name": "forms",
"description": "Forms app for nextcloud",
"version": "4.2.2",
"repository": {
"type": "git",
"url": "git+https://github.com/nextcloud/forms.git"
},
"bugs": {
"url": "https://github.com/nextcloud/forms/issues"
},
"homepage": "https://github.com/nextcloud/forms#readme",
"license": "AGPL-3.0",
"private": true,
"type": "module",
"scripts": {
"build": "vite --mode production build",
"dev": "vite --mode development build",
"watch": "vite --mode development build --watch",
"cypress": "cypress run --e2e",
"cypress:gui": "cypress open",
"lint": "eslint --ext .js,.vue src",
"lint:fix": "eslint --ext .js,.vue src --fix",
"stylelint": "stylelint css/*.css css/*.scss src/**/*.vue",
"stylelint:fix": "stylelint css/*.css css/*.scss src/**/*.vue --fix"
},
"dependencies": {
"@nextcloud/auth": "^2.2.1",
"@nextcloud/axios": "^2.4.0",
"@nextcloud/dialogs": "^5.3.0",
"@nextcloud/event-bus": "^3.1.0",
"@nextcloud/initial-state": "^2.1.0",
"@nextcloud/l10n": "^2.2.0",
"@nextcloud/logger": "^2.7.0",
"@nextcloud/moment": "^1.3.1",
"@nextcloud/router": "^3.0.0",
"@nextcloud/vue": "^8.11.2",
"crypto-js": "^4.2.0",
"debounce": "^2.0.0",
"markdown-it": "^14.1.0",
"p-debounce": "^4.0.0",
"p-queue": "^8.0.1",
"v-click-outside": "^3.2.0",
"vue": "^2.7.16",
"vue-material-design-icons": "^5.3.0",
"vue-router": "^3.6.5",
"vuedraggable": "^2.24.3"
},
"browserslist": [
"extends @nextcloud/browserslist-config"
],
"engines": {
"node": "^20.0.0",
"npm": "^10.0.0"
},
"devDependencies": {
"@mdi/js": "^7.4.47",
"@mdi/svg": "^7.4.47",
"@nextcloud/browserslist-config": "^3.0.0",
"@nextcloud/cypress": "^1.0.0-beta.7",
"@nextcloud/eslint-config": "^8.3.0",
"@nextcloud/stylelint-config": "^2.4.0",
"@nextcloud/vite-config": "^1.2.2",
"cypress": "^13.7.3",
"cypress-split": "^1.23.0",
"cypress-vite": "^1.5.0",
"eslint-plugin-cypress": "^2.15.1",
"vite": "^5.2.8"
}
}