forked from marius-wieschollek/passwords
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
94 lines (94 loc) · 3.55 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
{
"name": "passwords",
"version": "2019.4.0",
"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",
"start:ldap": "docker-compose -f docker-compose.yml -f docker/configs/ldap.yml up -d",
"stop:ldap": "docker-compose -f docker-compose.yml -f docker/configs/ldap.yml stop",
"start:postgres": "docker-compose -f docker-compose.yml -f docker/configs/postgres.yml up -d",
"stop:postgres": "docker-compose -f docker-compose.yml -f docker/configs/postgres.yml stop",
"logs": "docker-compose logs -f app",
"docker:build": "docker-compose up -d --build",
"shell": "docker exec -itu www-data passwords-php bash",
"shell:root": "docker exec -it passwords-php bash",
"watch": "webpack --env.features --watch --progress",
"build": "webpack --env.production",
"build:nightly": "webpack --env.production --env.features",
"cron": "docker exec -u www-data passwords-php php /var/www/html/cron.php",
"handbook": "codeceptjs run --steps",
"selenium": "docker run --net=host selenium/standalone-firefox",
"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"
},
"dependencies": {},
"devDependencies": {
"blueimp-gallery": "^2.33.0",
"clean-webpack-plugin": "^0.1.19",
"codeceptjs": "^2.0.8",
"copy-webpack-plugin": "^4.6.0",
"css-loader": "^0.28.11",
"csv-hero": "0.0.4",
"download": "^7.1.0",
"easyimage": "^3.1.1",
"extract-text-webpack-plugin": "^3.0.2",
"file-loader": "^2.0.0",
"font-awesome": "^4.7.0",
"jquery": "^3.3.1",
"marked": "^0.6.1",
"node-sass": "^4.11.0",
"optimize-css-assets-webpack-plugin": "^3.2.0",
"progress-bar-webpack-plugin": "^1.12.1",
"random-material-color": "^1.0.3",
"sass-loader": "^7.1.0",
"sass-resources-loader": "^1.3.5",
"simplemde": "^1.11.2",
"uglify-es": "3.3.9",
"uglifyjs-webpack-plugin": "^1.3.0",
"url-loader": "^1.1.2",
"vue": "^2.6.10",
"vue-loader": "^14.2.4",
"vue-qrcode-component": "^2.1.1",
"vue-router": "^3.0.2",
"vue-style-loader": "^4.1.2",
"vue-template-compiler": "^2.6.10",
"webdriverio": "^5.7.8",
"webpack": "^3.12.0",
"xlsx": "^0.14.1"
},
"repository": {
"type": "git",
"url": "https://git.mdns.eu/nextcloud/passwords.git"
},
"keywords": [
"passwords",
"nextcloud",
"security"
],
"prettier": {
"parser": "babylon"
},
"eslintConfig": {
"brace-style": [
"1tbs",
"stroustrup",
{
"allowSingleLine": true
}
],
"globals": {
"OC": true,
"OCA": true,
"actor": true,
"window": true,
"Scenario": true,
"oc_appswebroots": true,
"__webpack_public_path__": true
}
},
"author": "Marius Wieschollek",
"license": "SEE LICENSE IN LICENSE"
}