-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
33 lines (33 loc) · 894 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
{
"name": "reaktor-chat-server",
"version": "1.0.0",
"main": "index.js",
"repository": "[email protected]:melonmanchan/reaktor-chat-server.git",
"author": "Matti Jokitulppo <[email protected]>",
"license": "MIT",
"scripts": {
"start": "./node_modules/.bin/babel-node ./app/server.js",
"build": "./node_modules/.bin/babel ./app -d ./dist",
"serve": "node ./dist/server.js"
},
"dependencies": {
"babel-cli": "^6.18.0",
"babel-preset-es2015": "^6.18.0",
"bcryptjs": "^2.4.0",
"bluebird": "^3.4.7",
"body-parser": "^1.15.2",
"chalk": "^1.1.3",
"cors": "^2.8.1",
"dateformat": "^2.0.0",
"express": "^4.14.0",
"jsonwebtoken": "^7.2.1",
"lodash.findkey": "^4.6.0",
"redis": "^2.6.3",
"socket.io": "^1.7.2",
"socket.io-redis": "^2.0.1",
"urlsafe-base64": "^1.0.0"
},
"engines": {
"node": "7.6.0"
}
}