forked from andi34/photobooth
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
67 lines (67 loc) · 2.02 KB
/
package.json
File metadata and controls
67 lines (67 loc) · 2.02 KB
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
{
"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:scss": "prettier src/sass/* --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 <andi@unlegacy-android.org>",
"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",
"rpio": "^2.1.1",
"socket.io": "^2.3.0",
"socket.io-client": "^2.3.0",
"whatwg-fetch": "^3.4.0"
},
"devDependencies": {
"@babel/core": "^7.11.6",
"@babel/preset-env": "^7.11.5",
"archiver": "^5.0.2",
"colors": "^1.4.0",
"eslint": "^7.10.0",
"eslint-plugin-node": "^11.1.0",
"git-tag-version": "^1.3.1",
"gulp-babel": "^8.0.0",
"prettier": "^2.1.2"
}
}