-
Notifications
You must be signed in to change notification settings - Fork 45
/
package.json
107 lines (107 loc) · 6.06 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
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
{
"name": "ncpasswords",
"version": "2024.11.1",
"description": "Easy to use yet feature-rich and secure password manager for Nextcloud",
"private": true,
"scripts": {
"start": "docker compose up -d",
"stop": "docker compose stop",
"down": "docker exec passwords-php bash -c 'find ./* -maxdepth 0 -not -name 'custom_apps' -print0 | xargs -0 rm -r --' && docker compose down --volumes",
"ldap:start": "docker compose -f docker-compose.yml -f docker/configs/ldap.yml up -d",
"ldap:stop": "docker compose -f docker-compose.yml -f docker/configs/ldap.yml stop",
"ldap:logs": "docker compose -f docker-compose.yml -f docker/configs/ldap.yml logs -f",
"ldap:down": "docker exec passwords-php bash -c 'find ./* -maxdepth 0 -not -name 'custom_apps' -print0 | xargs -0 rm -r --' && docker compose -f docker-compose.yml -f docker/configs/ldap.yml down --volumes",
"saml:start": "docker compose -f docker-compose.yml -f docker/configs/saml.yml up -d",
"saml:stop": "docker compose -f docker-compose.yml -f docker/configs/saml.yml stop",
"saml:logs": "docker compose -f docker-compose.yml -f docker/configs/saml.yml logs -f",
"saml:down": "docker exec passwords-php bash -c 'find ./* -maxdepth 0 -not -name 'custom_apps' -print0 | xargs -0 rm -r --' && docker compose -f docker-compose.yml -f docker/configs/saml.yml down --volumes",
"ldap+saml:start": "docker compose -f docker-compose.yml -f docker/configs/ldap.yml -f docker/configs/saml.yml up -d",
"ldap+saml:stop": "docker compose -f docker-compose.yml -f docker/configs/ldap.yml -f docker/configs/saml.yml stop",
"ldap+saml:logs": "docker compose -f docker-compose.yml -f docker/configs/ldap.yml -f docker/configs/saml.yml logs -f",
"ldap+saml:down": "docker exec passwords-php bash -c 'find ./* -maxdepth 0 -not -name 'custom_apps' -print0 | xargs -0 rm -r --' && docker compose -f docker-compose.yml -f docker/configs/ldap.yml -f docker/configs/saml.yml down --volumes",
"postgres:start": "docker compose -f docker-compose.yml -f docker/configs/postgres.yml up -d",
"postgres:stop": "docker compose -f docker-compose.yml -f docker/configs/postgres.yml stop",
"postgres:logs": "docker compose -f docker-compose.yml -f docker/configs/postgres.yml logs -f",
"postgres:down": "docker exec passwords-php bash -c 'find ./* -maxdepth 0 -not -name 'custom_apps' -print0 | xargs -0 rm -r --' && docker compose -f docker-compose.yml -f docker/configs/postgres.yml down --volumes",
"sqlite:start": "docker compose -f docker-compose.yml -f docker/configs/sqlite.yml up -d",
"sqlite:stop": "docker compose -f docker-compose.yml -f docker/configs/sqlite.yml stop",
"sqlite:logs": "docker compose -f docker-compose.yml -f docker/configs/sqlite.yml logs -f",
"sqlite:down": "docker exec passwords-php bash -c 'find ./* -maxdepth 0 -not -name 'custom_apps' -print0 | xargs -0 rm -r --' && docker compose -f docker-compose.yml -f docker/configs/sqlite.yml down --volumes",
"logs": "docker compose logs -f app",
"docker:build": "docker compose build --parallel --pull && docker compose up -d",
"shell": "docker exec -itu www-data passwords-php bash",
"shell:root": "docker exec -it passwords-php bash",
"watch": "webpack --env features=true --watch --progress",
"build": "webpack --mode=production --env debuginfo=true",
"build:stable": "webpack --mode=production",
"build:testing": "webpack --mode=production --env features=true",
"cron": "docker exec -u www-data passwords-php php /var/www/html/cron.php",
"cypress": "npx cypress open",
"rector": "node scripts/generate-nc-shells.mjs && rector --version && rector process --clear-cache",
"phpunit": "phpunit --bootstrap tests/phpunit/bootstrap.php tests/phpunit/",
"mkcert": "mkdir -p docker/volumes/nginx && mkcert -cert-file docker/volumes/nginx/default.pem -key-file docker/volumes/nginx/default.key localhost passwords.local && chmod -R 777 docker/volumes/nginx/"
},
"devDependencies": {
"@mdi/js": "^7.4.47",
"@nextcloud/auth": "^2.2.1",
"@nextcloud/dialogs": "^5.0.3",
"@nextcloud/event-bus": "^3.1.0",
"@nextcloud/initial-state": "^2.1.0",
"@nextcloud/l10n": "^2.2.0",
"@nextcloud/router": "^2.2.0",
"@nextcloud/vue": "^8.4.0",
"@toast-ui/editor": "^3.2.2",
"blueimp-gallery": "^3.4.0",
"clean-webpack-plugin": "^1.0.1",
"copy-webpack-plugin": "^10.2.4",
"css-loader": "^6.7.1",
"css-minimizer-webpack-plugin": "^3.4.1",
"csv-hero": "^0.0.4",
"dayjs": "^1.11.7",
"dompurify": "^2.4.0",
"es-abstract": "1.20.4",
"eventemitter3": "^4.0.7",
"file-loader": "^6.2.0",
"font-awesome": "^4.7.0",
"jszip": "^3.10.1",
"marked": "^4.2.2",
"mermaid": "^10.6.1",
"mini-css-extract-plugin": "^2.7.2",
"passwords-client": "1.0.0-alpha.5514",
"process": "^0.11.10",
"sass": "^1.57.1",
"sass-loader": "^12.6.0",
"sass-resources-loader": "^2.2.5",
"uglify-js": "3.17.4",
"url-loader": "^4.1.1",
"vue": "^2.7.14",
"vue-loader": "^15.10.1",
"vue-material-design-icons": "^5.1.2",
"vue-qrcode-component": "^2.1.1",
"vue-router": "^3.6.5",
"vue-style-loader": "4.1.3",
"vue-template-compiler": "^2.7.14",
"webpack": "^5.75.0",
"webpack-bundle-analyzer": "^4.7.0",
"webpack-cli": "^4.10.0",
"xlsx": "https://cdn.sheetjs.com/xlsx-0.20.1/xlsx-0.20.1.tgz"
},
"browser": {
"crypto": false
},
"repository": {
"type": "git",
"url": "https://git.mdns.eu/nextcloud/passwords.git"
},
"keywords": [
"passwords",
"nextcloud",
"security"
],
"author": "Marius Wieschollek",
"license": "SEE LICENSE IN LICENSE",
"_id": "ncpasswords@2021.12.0",
"dependencies": {
"cypress": "^13.6.2"
}
}