-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
67 lines (67 loc) · 1.63 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
{
"name": "gallery-server",
"version": "1.8.0",
"description": "Beautiful and powerful yet simple local image viewer on your PC or mobile.",
"keywords": [
"beautiful",
"pc",
"mobile",
"local",
"image",
"viewer",
"gallery",
"server",
"local gallery",
"local image viewer",
"react"
],
"main": "server/app.js",
"files": [
"client/build",
"server/",
"lib/"
],
"dependencies": {
"address": "^1.1.2",
"boxen": "^4.1.0",
"commander": "^3.0.2",
"detect-port": "^1.3.0",
"image-size": "^0.8.3",
"is-image": "^3.0.0",
"is-video": "^1.0.1",
"koa": "^2.10.0",
"koa-static": "^5.0.0"
},
"devDependencies": {
"git-commit-msg-linter": "^3.2.6",
"mocha": "^6.2.2",
"react": "^16.11.0",
"react-dom": "^16.11.0",
"react-images": "^1.2.0-beta.7",
"react-photo-gallery": "^8.0.0",
"react-scripts": "3.2.0",
"react-toggle": "^4.1.1"
},
"scripts": {
"dev:server": "node server/app.js",
"dev:client": "cd client && npm run start",
"preversion": "npm test && npm run clean && npm run build:client",
"postversion": "npm publish && git push && git push --tags",
"clean": "rm -rf ./client/build/",
"build:client": "cd client && npm run build",
"test": "mocha"
},
"bin": {
"gallery-server": "server/app.js"
},
"author": "legend80s",
"license": "ISC",
"repository": {
"type": "git",
"url": "https://github.com/legend80s/gallery-server"
},
"bugs": {
"url": "https://github.com/legend80s/gallery-server/issues"
},
"homepage": "https://github.com/legend80s/gallery-server#readme"
}