-
Notifications
You must be signed in to change notification settings - Fork 19
/
Copy pathpackage.json
49 lines (49 loc) · 1.5 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
{
"name": "password_policy",
"description": "Password Policy for nextcloud",
"version": "4.0.0-dev.0",
"author": "Nextcloud GmbH and Nextcloud contributors",
"repository": {
"type": "git",
"url": "git+https://github.com/nextcloud/password_policy.git"
},
"bugs": {
"url": "https://github.com/nextcloud/password_policy/issues"
},
"homepage": "https://github.com/nextcloud/password_policy#readme",
"license": "AGPL-3.0-or-later",
"private": true,
"type": "module",
"scripts": {
"build": "vite --mode production build",
"dev": "vite --mode development build",
"watch": "vite --mode development build --watch",
"lint": "eslint --ext .js,.vue src",
"lint:fix": "eslint --ext .js,.vue src --fix",
"stylelint": "stylelint src/**/*.scss src/**/*.vue src/**/*.vue",
"stylelint:fix": "stylelint src/**/*.scss src/**/*.vue --fix"
},
"dependencies": {
"@nextcloud/capabilities": "^1.2.0",
"@nextcloud/dialogs": "^6.1.1",
"@nextcloud/initial-state": "^2.2.0",
"@nextcloud/l10n": "^3.1.0",
"@nextcloud/vue": "^8.22.0",
"vue": "^2.7.16",
"vue-material-design-icons": "^5.3.1"
},
"engines": {
"node": "^20.0.0",
"npm": "^10.0.0"
},
"devDependencies": {
"@nextcloud/browserslist-config": "^3.0.1",
"@nextcloud/eslint-config": "^8.4.1",
"@nextcloud/stylelint-config": "^3.0.1",
"@nextcloud/vite-config": "^1.5.1",
"@vue/tsconfig": "^0.5.1",
"sass": "^1.83.4",
"typescript": "^5.7.3",
"vite": "^5.4.14"
}
}