-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
44 lines (44 loc) · 1.29 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
{
"name": "palette-gallery",
"version": "1.0.0",
"description": "Dynamic web application (Node.js/Express) to display an image gallery with the color palette of each image",
"main": "server.js",
"scripts": {
"backupData": "mv data/images.json data/images-`date \"+%Y-%m-%d_%H-%M\"`.json || true",
"createData": "node createData.js -a",
"test": "echo \"Error: no test specified\" && exit 1",
"start": "node server.js",
"scss": "node-sass src/scss/ --output-style expanded --output public/css/",
"imagemin": "imagemin src/images --out-dir=public/images --plugin=mozjpeg --plugin.mozjpeg.quality=30"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ijambro/palette-gallery.git"
},
"keywords": [
"image",
"color",
"palette",
"gallery"
],
"author": "Jake Palmer",
"license": "GPL-3.0-or-later",
"bugs": {
"url": "https://github.com/ijambro/palette-gallery/issues"
},
"homepage": "https://github.com/ijambro/palette-gallery#readme",
"dependencies": {
"command-line-args": "^5.1.1",
"ejs": "^3.1.5",
"express": "^4.17.1",
"get-image-colors": "^2.0.1"
},
"devDependencies": {
"imagemin-cli": "^6.0.0",
"imagemin-mozjpeg": "^9.0.0",
"node-sass": "^4.14.1"
},
"engines": {
"node": "10.x"
}
}