forked from PhotoboothProject/photobooth
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
89 lines (89 loc) · 2.77 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
{
"name": "photobooth",
"version": "4.99.0",
"description": "A Photobooth webinterface for Linux and Windows",
"engines": {
"node": ">=18.17.0",
"npm": ">=9.6.0"
},
"scripts": {
"build": "npm-run-all --serial composer:install format build:gulp build:head clean:skipwelcome",
"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": "rimraf --glob resources/css/**/*.css",
"clean:head": "rimraf HEAD",
"clean:js": "rimraf --glob resources/js/**/*.js",
"clean:skipwelcome": "rimraf welcome/.skip_welcome",
"eslint": "eslint assets/js/{,*/**/}*.js",
"eslint:fix": "eslint assets/js/{,*/**/}*.js --fix",
"format": "npm-run-all format:* eslint:fix",
"format:js": "prettier assets/js/{,*/**/}*.js --write",
"format:scss": "prettier assets/sass/{,*/**/}*.scss --write",
"pack:build": "npm-run-all --serial eslint build pack:zip",
"pack:zip": "node scripts/pack-build.js",
"composer:install": "php bin/composer install",
"composer:cgl": "php bin/composer cgl",
"composer:lint": "php bin/composer lint",
"composer:update": "php bin/composer update -w",
"composer:self-update": "php bin/composer self-update",
"tw:admin": "gulp tailwind-admin"
},
"author": "Andreas Blaesius <andi@unlegacy-android.org>",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/PhotoboothProject/photobooth.git"
},
"homepage": "https://photoboothproject.github.io",
"bugs": {
"url": "https://github.com/PhotoboothProject/photobooth/issues"
},
"keywords": [
"photobooth",
"gphoto2",
"camera",
"digicamcontrol",
"photography",
"raspberry pi",
"wedding",
"events"
],
"dependencies": {
"@fortawesome/fontawesome-free": "^6.5.1",
"autoprefixer": "^10.4.19",
"github-markdown-css": "^5.5.1",
"gulp": "^5.0.0",
"gulp-concat": "^2.6.1",
"gulp-dart-sass": "^1.1.0",
"gulp-filter": "^9.0.1",
"gulp-postcss": "^10.0.0",
"gulp-rename": "^2.0.0",
"jquery": "^3.7.1",
"marvinj": "^1.0.0",
"material-icons": "^1.13.12",
"node-sass-importer": "^2.0.2",
"normalize.css": "^8.0.1",
"npm-run-all": "^4.1.5",
"onoff": "^6.0.3",
"photoswipe": "^5.4.3",
"sass": "^1.72.0",
"simple-keyboard": "^3.7.73",
"socket.io": "^4.7.5",
"socket.io-client": "^4.7.5",
"tailwindcss": "^3.4.3"
},
"devDependencies": {
"@babel/core": "^7.24.3",
"@babel/preset-env": "^7.24.3",
"archiver": "^7.0.1",
"colors": "^1.4.0",
"eslint": "^8.57.0",
"eslint-plugin-n": "^16.6.2",
"git-tag-version": "^1.3.1",
"gulp-babel": "^8.0.0",
"prettier": "^3.2.5",
"rimraf": "^5.0.5"
}
}