-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
38 lines (38 loc) · 930 Bytes
/
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
{
"name": "thanqueue",
"version": "0.0.1",
"main": "index.js",
"license": "MIT",
"bin": {
"thanqueue": "bin/worker.js"
},
"files": [
"src/",
"bin/",
"lua/"
],
"dependencies": {
"bunyan": "^1.8.12",
"bunyan-elasticsearch": "^1.0.1",
"debounce": "^1.1.0",
"elasticsearch": "^13.3.1",
"ioredis": "^3.2.1",
"knex": "^0.13.0",
"lodash": "^4.17.4",
"minimist": "^1.2.0",
"mitt": "^1.1.2",
"moment": "^2.19.1",
"pg": "^7.3.0",
"winston": "^2.4.0",
"winston-elasticsearch": "^0.5.3"
},
"scripts": {
"worker": "node bin/worker.js example/queue.config.js",
"dashboard": "yarn frontend-dev & yarn backend-dev",
"frontend-dev": "cd ui/frontend && node fuse-dev",
"frontend": "cd ui/frontend && node fuse",
"backend-dev": "cd ui/backend && nodemon",
"backend": "cd ui/backend && node",
"spawn": "node example/spawn.js"
}
}