-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
72 lines (72 loc) · 2.01 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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
{
"name": "colorchat-server",
"version": "1.0.0",
"description": "ColorChat server application",
"main": "index.js",
"engines": {
"node": ">= 5.4.0"
},
"scripts": {
"build": "babel src -d dist",
"watch": "npm run build && nodemon dist/index.js",
"start": "npm run build && node dist/index.js",
"test": "npm run build && mocha --require @babel/register --exit",
"sequel": "npx sequelize --config sequelize.js --migrations-path gulp/migrations --models-path src/models",
"start-docker": "docker build -t dnbrwstr/colorchat-server .; docker run --env-file=\".env.docker\" -v /Users/danielbrewster/projects/chat-server/firebaseServiceAccount.json:/var/www/firebaseServiceAccount.json -p 127.0.0.1:3000:3000 dnbrwstr/colorchat-server"
},
"author": "Daniel Brewster",
"license": "MIT",
"babel": {
"presets": [
[
"@babel/env",
{
"targets": {
"node": 10
}
}
]
],
"plugins": [
"@babel/proposal-object-rest-spread"
]
},
"dependencies": {
"@hapi/joi": "^15.1.1",
"amqplib": "^0.5.3",
"bluebird": "^3.5.3",
"body-parser": "^1.13.3",
"celebrate": "^10.1.0",
"chalk": "^2.4.2",
"color": "^1.0.3",
"cors": "^2.8.5",
"dotenv": "^4.0.0",
"express": "^4.16.4",
"fast-color-lookup": "0.2.3",
"firebase-admin": "^8.8.0",
"google-libphonenumber": "^2.0.15",
"minimist": "^1.2.0",
"morgan": "^1.9.1",
"node-fetch": "^1.3.3",
"pg": "^6.2.2",
"pg-hstore": "^2.3.2",
"ramda": "^0.23.0",
"sequelize": "^5.21.2",
"sequelize-cli": "^5.5.1",
"socket.io": "^2.3.0",
"twilio": "^3.28.0",
"uuid": "^2.0.1"
},
"devDependencies": {
"@babel/cli": "^7.7.4",
"@babel/core": "^7.7.4",
"@babel/plugin-proposal-object-rest-spread": "^7.7.4",
"@babel/preset-env": "^7.7.4",
"@babel/register": "^7.7.4",
"chai": "^3.2.0",
"mocha": "^5.2.0",
"sinon": "^2.2.0",
"socket.io-client": "^2.3.0",
"supertest": "^3.4.2"
}
}