-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
64 lines (64 loc) · 1.62 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
{
"name": "shatabang",
"version": "0.9.0",
"description": "Picture library managing tools",
"author": "Andreas Sehr <andreas@sehr.se>",
"contributors": [],
"bin": {
"module-name": ""
},
"scripts": {
"dev": "npm-run-all --parallel server processor",
"dev-processor": "npm-run-all --parallel processor",
"test": "jest",
"start": "node --preserve-symlinks server/server.js",
"start_redis": "redis-server",
"processor": "nodemon processor/main.js",
"server": "nodemon",
"build_client": "cd client && ember build --environment='production'",
"client_install": "cd client && npm install;",
"postinstall": "npm i --prefix server; npm i --prefix processor",
"postaudit": "npm audit --prefix server; npm audit --prefix processor"
},
"main": "server/server.js",
"repository": {
"type": "git",
"url": "https://github.com/softbrix/shatabang"
},
"bugs": {
"url": "https://github.com/softbrix/shatabang/issues"
},
"keywords": [
"pictures",
"gallery",
"shatabang",
"softbrix",
"docker",
"ember",
"node"
],
"devDependencies": {
"async": "^3.2.0",
"fakeredis": "2.0.0",
"idre-array-cache": "0.3.1",
"jest": "^29.7.0",
"node-dir": "0.1.17",
"nodemon": "^3.1.4",
"npm-run-all2": "5.0.0",
"progress": "^2.0.3",
"sha256": "0.2.0",
"sharp-phash": "2.1.0",
"stureby-index": "^3.3.0",
"vega-media-info": "2.8.0",
"vemdalen-index": "^2.0.2"
},
"preferGlobal": true,
"private": true,
"subdomain": "shatabang",
"analyze": true,
"license": "MIT",
"workspaces": [
"server",
"processor"
]
}