-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
133 lines (133 loc) · 5.1 KB
/
Copy pathpackage.json
File metadata and controls
133 lines (133 loc) · 5.1 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
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
{
"name": "integriq",
"version": "1.0.0",
"license": "EUPL-1.2",
"engines": {
"node": "^22.14 || ^24 || >=26",
"npm": "^11.0.0"
},
"scripts": {
"test:l10n": "node tests/l10n/check-l10n.js",
"test:l10n:parity": "node tests/l10n/check-l10n-parity.js",
"test:l10n:write": "node tests/l10n/check-l10n.js --write",
"check:schema-l10n": "node scripts/check-schema-l10n.js",
"check:l10n": "node scripts/check-l10n.js",
"clean:l10n": "node scripts/clean-l10n.js",
"find:unwrapped": "node scripts/find-unwrapped.js",
"build": "NODE_ENV=production webpack --config webpack.config.js --progress",
"dev": "NODE_ENV=development webpack --config webpack.config.js --progress",
"watch": "NODE_ENV=development webpack --config webpack.config.js --progress --watch",
"lint": "eslint src",
"lint-fix": "npm run lint -- --fix",
"test": "vitest run",
"test-coverage": "vitest run --coverage",
"test:unit": "vitest run",
"test:coverage": "vitest run --coverage --coverage.provider=v8 --coverage.reporter=json-summary --coverage.reporter=text-summary --coverage.include=src/** --coverage.reportsDirectory=coverage-vitest",
"test:coverage-ratchet": "npm run test:coverage && bash tests/coverage-ratchet.sh vitest coverage-vitest/coverage-summary.json",
"test:unit:watch": "vitest",
"test:e2e": "playwright test",
"test:e2e:docs": "playwright test --project docs-capture",
"stylelint": "stylelint \"{src,css}/**/*.{vue,scss,css}\"",
"stylelint:fix": "stylelint \"{src,css}/**/*.{vue,scss,css}\" --fix",
"check:json-strict": "node tests/validate-json-strict.js",
"check:manifest": "node tests/validate-manifest.js",
"check:register": "node tests/validate-register.js",
"check:specs": "npm run check:json-strict && npm run check:manifest && npm run check:register",
"test:newman": "newman run tests/postman/integriq.postman_collection.json --environment tests/postman/integriq.postman_environment.json --reporters cli,json --reporter-json-export tests/postman/newman-report.json",
"test:regression": "playwright test --project regression --workers=4",
"format": "prettier --check \"**/*.{js,ts,vue,css,scss}\"",
"format:fix": "prettier --write \"**/*.{js,ts,vue,css,scss}\"",
"prepare": "git config core.hooksPath .githooks || true",
"l10n:build": "node scripts/build-l10n-js.js",
"check:l10n-js": "node scripts/build-l10n-js.js --check"
},
"browserslist": [
"extends @nextcloud/browserslist-config"
],
"dependencies": {
"@codemirror/lang-json": "^6.0.1",
"@conduction/nextcloud-vue": "^2.24.2",
"@mdi/js": "^7.4.47",
"@nextcloud/auth": "^2.6.0",
"@nextcloud/axios": "~2.5.2",
"@nextcloud/capabilities": "^1.2.1",
"@nextcloud/dialogs": "^7.4.1",
"@nextcloud/initial-state": "^3.0.0",
"@nextcloud/l10n": "^3.4.1",
"@nextcloud/router": "^3.1.0",
"@nextcloud/vue": "^9.9.0",
"@vueuse/core": "^14.3.0",
"css-loader": "~7.1.1",
"dexie": "^4.4.5",
"dompurify": "^3.0.0",
"gridstack": "^13.2.0",
"lodash": "^4.17.21",
"marked": "^18.0.11",
"mitt": "^3.0.1",
"pinia": "^2.1.7",
"style-loader": "~4.0.0",
"vue": "^3.5.13",
"vue-codemirror6": "^1.6.1",
"vue-draggable-plus": "^0.6.1",
"vue-material-design-icons": "^5.3.1",
"vue-router": "^4.6.4",
"zod": "^4.5.2"
},
"devDependencies": {
"@babel/core": "^7.29.7",
"@babel/preset-env": "^7.22.9",
"@cyclonedx/cyclonedx-npm": "^6.0.1",
"@nextcloud/browserslist-config": "^3.0.1",
"@nextcloud/eslint-config": "^9.0.1",
"@nextcloud/prettier-config": "^1.2.0",
"@nextcloud/stylelint-config": "^3.2.2",
"@nextcloud/webpack-vue-config": "^6.0.1",
"@pinia/testing": "^0.1.3",
"@playwright/test": "^1.59.1",
"@types/jest": "^30.0.0",
"@types/lodash": "^4.17.14",
"@types/node": "^26.4.0",
"@typescript-eslint/parser": "^8.67.0",
"@vitejs/plugin-vue": "^6.0.8",
"@vue/compiler-sfc": "^3.5.13",
"@vue/test-utils": "^2.4.6",
"ajv": "^8.20.0",
"ajv-formats": "^3.0.1",
"axe-core": "^4.10.0",
"eslint": "^10.8.1",
"eslint-config-prettier": "^10.1.8",
"eslint-webpack-plugin": "^6.0.0",
"espree": "^11.0.0",
"jest": "^30.5.0",
"jest-environment-jsdom": "^29.7.0",
"jest-transform-stub": "^2.0.0",
"node-polyfill-webpack-plugin": "4.0.0",
"postcss-html": "^1.0.0",
"prettier": "^3.9.6",
"sass": "^1.77.0",
"sass-loader": "^16.0.2",
"stylelint": "^17.9.1",
"stylelint-config-recommended-scss": "^17.0.1",
"stylelint-config-recommended-vue": "^1.6.1",
"stylelint-webpack-plugin": "^5.1.0",
"terser-webpack-plugin": "^5.6.1",
"ts-jest": "^29.2.3",
"ts-loader": "^9.5.1",
"typescript": "^5.5.4",
"vitest": "^4.1.11",
"vue-eslint-parser": "^10.3.0",
"vue-loader": "^17.4.2",
"webpack": "^5.110.1",
"webpack-cli": "^6.0.1"
},
"overrides": {
"@vue/test-utils": {
"vue": "$vue"
},
"@nextcloud/axios": "~2.5.2",
"postcss": "^8.4.49",
"vue3-apexcharts": "<1.9.0",
"vue-apexcharts": "<1.9.0"
},
"prettier": "@nextcloud/prettier-config"
}