-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
37 lines (37 loc) · 978 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
33
34
35
36
37
{
"name": "whck-server",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"start": "nodemon --watch ./src -e js --exec \"babel-node --presets es2015 src/index.js\"",
"build": "babel ./src -d ./dist --presets es2015",
"start-prod": "node ./dist/index.js",
"lint": "eslint ./src",
"test": "echo \"Error: no test specified\" && exit 1"
},
"author": "Alvar Carto",
"license": "UNLICENSED",
"dependencies": {
"babel-cli": "^6.18.0",
"babel-preset-es2015": "^6.18.0",
"bluebird": "^3.4.6",
"cors": "^2.8.3",
"express": "^4.15.3",
"joi": "^9.2.0",
"lodash": "^4.17.2",
"moment": "^2.18.1",
"morgan": "^1.8.2",
"multer": "^1.3.0",
"rxjs": "^5.4.0",
"uuid": "^3.0.1",
"winston": "^2.3.1",
"ws": "^3.0.0"
},
"devDependencies": {
"eslint": "^3.11.1",
"eslint-config-airbnb-base": "^10.0.1",
"eslint-plugin-import": "^2.2.0",
"nodemon": "^1.11.0"
}
}