-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
32 lines (32 loc) · 943 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
{
"name": "example-single-process",
"version": "3.0.0",
"description": "An example implementation of an Oddworks server in a single process.",
"main": "server.js",
"scripts": {
"test": "xo && tape test/**/*-test.js | tap-spec",
"dev": "NODE_ENV=$npm_config_env HOST=$npm_config_host PORT=$npm_config_port JWT_SECRET=$npm_config_jwt_secret LOG_LEVEL=$npm_config_log_level DEBUG=$npm_config_debug nodemon server.js -e js,json",
"start": "node server.js -e js,json"
},
"author": "Odd Networks <info@oddnetworks.com>",
"license": "Apache-2.0",
"dependencies": {
"@oddnetworks/oddworks": "^3.4.3",
"@oddnetworks/oddworks-example-data": "^3.0.0",
"express": "^4.0.0",
"fakeredis": "^1.0.3",
"oddcast": "^2.0.0"
},
"devDependencies": {
"nodemon": "^1.9.1",
"tap-spec": "^4.1.1",
"tape": "^4.5.1",
"xo": "^0.15.1"
},
"xo": {
"envs": [
"node",
"es6"
]
}
}