-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
52 lines (52 loc) · 1.23 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
{
"name": "collab-backend",
"version": "1.0.0",
"description": "",
"main": "app.js",
"scripts": {
"dev": "nodemon app.js",
"start": "node app.js",
"test": "jest",
"migrate": "node_modules/.bin/sequelize db:migrate"
},
"repository": {
"type": "git",
"url": "git+https://github.com/rogerknl/collab-backend.git"
},
"author": "",
"license": "MIT",
"bugs": {
"url": "https://github.com/rogerknl/collab-backend/issues"
},
"homepage": "https://github.com/rogerknl/collab-backend#readme",
"dependencies": {
"amqplib": "^0.5.2",
"atob": "^2.1.1",
"bcrypt": "^2.0.1",
"bitcore-explorers": "^1.0.1",
"bitcore-lib": "^0.15.0",
"browserify": "^16.2.2",
"jsonwebtoken": "^8.3.0",
"kcors": "^2.2.1",
"koa": "^2.5.1",
"koa-bodyparser": "^4.2.1",
"koa-logger": "^3.2.0",
"koa-router": "^7.4.0",
"mysql2": "^1.5.3",
"nodemailer": "^4.6.7",
"redis": "^2.8.0",
"request": "^2.87.0",
"sequelize": "^4.38.0",
"uuid": "^3.3.2"
},
"devDependencies": {
"chai": "^4.1.2",
"dotenv": "^6.0.0",
"eslint": "^5.0.1",
"jest": "^23.2.0",
"mocha": "^5.2.0",
"nodemon": "^1.17.5",
"sequelize-cli": "^4.0.0",
"sinon": "^6.0.0"
}
}