forked from RisingStack/multi-process-nodejs-example
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (54 loc) · 1.34 KB
/
package.json
File metadata and controls
54 lines (54 loc) · 1.34 KB
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
{
"name": "multi-process-nodejs-example",
"version": "2.0.0",
"description": "Example for https://blog.risingstack.com/node-js-project-structure-tutorial-node-js-at-scale/",
"main": "index.js",
"scripts": {
"start": "node .",
"start:dev": "NODE_ENV=development nodemon .",
"test-web": "NODE_ENV=test PROCESS_TYPE=web jest --forceExit",
"test": "npm run test-web",
"lint": "eslint ."
},
"author": "Andras Toth <andras.toth@risingstack.com>",
"license": "MIT",
"engines": {
"node": ">=7.9.0"
},
"devDependencies": {
"eslint": "3.19.0",
"eslint-config-airbnb-base": "11.1.3",
"eslint-plugin-import": "2.2.0",
"eslint-plugin-promise": "3.5.0",
"jest": "19.0.2",
"mocha": "3.2.0",
"nock": "9.0.13",
"nodemon": "1.11.0",
"pre-commit": "1.2.2",
"super-request": "1.2.0"
},
"dependencies": {
"@risingstack/trace": "3.6.2",
"boom": "4.3.1",
"dotenv": "4.0.0",
"es6-promisify": "5.0.0",
"ioredis": "2.5.0",
"joi": "10.4.1",
"koa": "2.2.0",
"koa-compose": "4.0.0",
"koa-router": "7.1.1",
"qs": "6.4.0",
"semver": "5.3.0",
"tortoise": "1.0.1",
"twitter": "1.7.0",
"winston": "2.3.1"
},
"jest": {
"testEnvironment": "node",
"setupTestFrameworkScriptFile": "./test/setup.js"
},
"pre-commit": [
"lint",
"test"
]
}