This repository has been archived by the owner on Aug 27, 2022. It is now read-only.
forked from andreknieriem/photobooth
-
-
Notifications
You must be signed in to change notification settings - Fork 39
/
package.json
85 lines (85 loc) · 3.13 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
{
"name": "photobooth",
"version": "3.0.0",
"description": "A Photobooth webinterface for Raspberry Pi and Windows",
"engines": {
"node": "12.22"
},
"scripts": {
"build": "npm-run-all --serial format build:faq build:gulp build:head clean:skipwelcome",
"build:faq": "mdown --input 'faq/*.md' --output manual --header faq/header.php --footer faq/footer.html && mv manual/faq.html manual/faq.php",
"build:gulp": "gulp",
"build:head": "git log --format='%h %s' -n 20 > HEAD",
"build:sass": "gulp sass",
"clean": "npm-run-all --parallel clean:*",
"clean:css": "rm resources/css/*.css || echo 'resources/css/*.css can not be removed or no .css files exist!'",
"clean:faq": "rm manual/faq.php || echo 'faq.php can not be removed or does not exist!'",
"clean:head": "rm HEAD || echo 'HEAD can not be removed or file not exist!'",
"clean:js": "rm resources/js/*.js || echo 'resources/js/*.js can not be removed or no .js files exist!'",
"clean:node": "rm -rf node_modules/ || echo 'node_modules/ can not be removed or does not exist!'",
"clean:skipwelcome": "rm .skip_welcome || echo '.skip_welcome can not be removed or does not exist!'",
"eslint": "eslint src/js/*.js",
"eslint:fix": "eslint src/js/*.js --fix",
"format": "npm-run-all --parallel format:*",
"format:js": "prettier src/js/*.js --write",
"format:phpapi": "prettier api/{,*/**/}*.php --write",
"format:phplib": "prettier lib/*.php --write",
"format:phptest": "prettier test/*.php --write",
"format:scss": "prettier src/sass/{,*/**/}*.scss --write",
"pack:build": "npm-run-all --serial eslint build pack:zip",
"pack:zip": "node scripts/pack-build.js",
"test": "echo \"Error: no test specified\" && exit 1",
"watch": "gulp watch"
},
"author": "Andreas Blaesius <[email protected]>",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/andi34/photobooth.git"
},
"homepage": "http://andi34.github.io/photobooth",
"bugs": {
"url": "https://github.com/andi34/photobooth/issues"
},
"keywords": [
"photobooth",
"gphoto2",
"camera",
"digicamcontrol",
"photography",
"raspberry pi",
"wedding",
"events"
],
"dependencies": {
"@andreasremdt/simple-translator": "^2.0.4",
"font-awesome": "^4.7.0",
"gh-markdown-cli": "^0.2.0",
"github-markdown-css": "^5.1.0",
"gulp": "^4.0.2",
"gulp-sass": "^5.1.0",
"jquery": "^3.6.0",
"marvinj": "^1.0.0",
"normalize.css": "^8.0.1",
"npm-run-all": "^4.1.5",
"onoff": "^6.0.3",
"sass": "^1.54.0",
"selectize": "^0.12.6",
"socket.io": "^4.5.1",
"socket.io-client": "^4.5.1",
"waypoints": "^4.0.1",
"whatwg-fetch": "^3.6.2"
},
"devDependencies": {
"@babel/core": "^7.18.9",
"@babel/preset-env": "^7.18.9",
"@prettier/plugin-php": "^0.18.9",
"archiver": "^5.3.1",
"colors": "^1.4.0",
"eslint": "^8.21.0",
"eslint-plugin-node": "^11.1.0",
"git-tag-version": "^1.3.1",
"gulp-babel": "^8.0.0",
"prettier": "^2.7.1"
}
}