-
Notifications
You must be signed in to change notification settings - Fork 142
/
package.json
48 lines (48 loc) · 1.2 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
{
"name": "multi-process-nodejs-example",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"start": "node .",
"start:prod": "NODE_ENV=production npm start",
"start:dev": "NODE_ENV=development nodemon .",
"test-web": "NODE_ENV=test PROCESS_TYPE=web mocha --require co-mocha test/setup.js 'web/**/*.spec.js'",
"test": "npm run test-web",
"lint": "eslint ."
},
"author": "Andras Toth <[email protected]>",
"license": "MIT",
"devDependencies": {
"chai": "3.5.0",
"co-mocha": "1.1.3",
"eslint": "3.12.0",
"eslint-config-airbnb-base": "11.0.0",
"eslint-plugin-import": "2.2.0",
"eslint-plugin-promise": "3.4.0",
"mocha": "3.2.0",
"nock": "9.0.2",
"nodemon": "1.11.0",
"pre-commit": "1.2.1",
"sinon": "1.17.6",
"sinon-chai": "2.8.0",
"super-request": "1.1.0"
},
"dependencies": {
"@risingstack/trace": "2.36.0",
"dotenv": "2.0.0",
"es6-promisify": "5.0.0",
"ioredis": "2.4.2",
"joi": "10.0.5",
"koa": "1.2.4",
"koa-router": "5.4.0",
"qs": "6.3.0",
"tortoise": "1.0.1",
"twitter": "1.7.0",
"winston": "2.3.0"
},
"pre-commit": [
"lint",
"test"
]
}