-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 937 Bytes
/
package.json
File metadata and controls
34 lines (34 loc) · 937 Bytes
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
{
"name": "ro-order-worker",
"version": "1.0.1",
"description": "order-worker observes database for new orders",
"main": "app.js",
"scripts": {
"start": "node app.js",
"test": "echo \"Error: no test specified\" && exit 0",
"clean": "rm -rf DataRealm",
"docker": "docker build -t ro/order-worker .",
"sub": "git submodule update --remote"
},
"repository": {
"type": "git",
"url": "https://github.com/restaurantorder/ro-order-worker.git"
},
"author": "Henrik Engelbrink",
"license": "ISC",
"dependencies": {
"axios": "^0.18.0",
"eslint": "^4.19.1",
"realm": "^2.2.4",
"socket.io": "^2.0.4",
"uuid": "^3.2.1"
},
"devDependencies": {
"eslint-config-standard": "^11.0.0",
"eslint-plugin-import": "^2.9.0",
"eslint-plugin-node": "^6.0.1",
"eslint-plugin-promise": "^3.7.0",
"eslint-plugin-standard": "^3.0.1",
"socket.io-client": "^2.0.4"
}
}