forked from andi34/photobooth
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
71 lines (71 loc) · 2.2 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
{
"name": "photobooth",
"version": "2.4.0-alpha",
"description": "A Photobooth webinterface for Raspberry Pi and Windows",
"scripts": {
"build": "npm-run-all --serial format build:faq build:gulp",
"build:faq": "mdown --input 'faq/*.md' --output manual --header faq/header.html --footer faq/footer.html",
"build:gulp": "gulp",
"build:sass": "gulp sass",
"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:php": "prettier {api,lib,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.3",
"font-awesome": "^4.7.0",
"gh-markdown-cli": "^0.2.0",
"github-markdown-css": "^4.0.0",
"gulp": "4.0.2",
"gulp-sass": "4.1.0",
"jquery": "^3.5.1",
"marvinj": "^1.0.0",
"normalize.css": "^8.0.1",
"npm-run-all": "^4.1.5",
"onoff": "^6.0.1",
"selectize": "^0.12.6",
"socket.io": "^3.1.2",
"socket.io-client": "^3.1.2",
"waypoints": "^4.0.1",
"whatwg-fetch": "^3.6.2"
},
"devDependencies": {
"@babel/core": "^7.13.8",
"@babel/preset-env": "^7.13.8",
"@prettier/plugin-php": "^0.16.1",
"archiver": "^5.2.0",
"colors": "^1.4.0",
"eslint": "^7.21.0",
"eslint-plugin-node": "^11.1.0",
"git-tag-version": "^1.3.1",
"gulp-babel": "^8.0.0",
"prettier": "^2.2.1"
}
}