-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
42 lines (42 loc) · 1.07 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
{
"name": "nodejs-cluster-example",
"version": "1.0.0",
"description": "NodeJS cluster example",
"main": "./src/index.js",
"author": "Vlad Morzhanov",
"license": "MIT",
"scripts": {
"start": "babel-node src/index.js",
"build": "babel src --out-dir dist",
"serve": "node ./dist/index.js"
},
"keywords": [
"node",
"node.js",
"koa.js",
"nodejs-cluster"
],
"dependencies": {
"@babel/polyfill": "^7.0.0",
"koa": "^2.5.3",
"winston": "^3.1.0"
},
"devDependencies": {
"@babel/cli": "^7.1.2",
"@babel/core": "^7.0.0-beta.51",
"@babel/node": "^7.0.0",
"@babel/plugin-proposal-class-properties": "^7.1.0",
"@babel/plugin-proposal-decorators": "^7.1.0",
"@babel/preset-env": "^7.0.0-beta.53",
"babel-eslint": "^9.0.0",
"eslint": "^5.6.0",
"eslint-config-airbnb": "^17.1.0",
"eslint-config-prettier": "^3.0.1",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-prettier": "^2.6.2",
"nodemon": "^1.18.4",
"pm2": "^3.2.2",
"prettier": "^1.10.2",
"prettier-eslint": "^8.8.2"
}
}