forked from leonhfr/coffeechain-backend
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
54 lines (54 loc) · 1.27 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
{
"name": "coffee-blockchain-backend",
"version": "1.0.0",
"private": true,
"description": "A Coffee Blockchain",
"main": "app.js",
"scripts": {
"dev": "nodemon app.js",
"start": "node app.js",
"test": "mocha",
"populate": "node ./blockchain/scripts/populate.js"
},
"repository": {
"type": "git",
"url": "https://github.com/leonhfr/coffee-blockchain-backend.git"
},
"engines": {
"node": "6.4.0",
"npm": "3.10.7"
},
"devDependencies": {
"eslint": "^5.6.0",
"eslint-plugin-json": "^1.2.1",
"mocha": "^5.2.0",
"nodemon": "^1.18.4"
},
"keywords": [
"coffee",
"blockchain"
],
"author": "leonhfr",
"license": "GPL-3.0-or-later",
"bugs": {
"url": "https://github.com/leonhfr/coffee-blockchain-backend/issues"
},
"homepage": "https://github.com/leonhfr/coffee-blockchain-backend#readme",
"dependencies": {
"demux": "^2.0.0",
"demux-eos": "^2.0.0",
"dotenv": "^6.0.0",
"eosjs": "^16.0.9",
"ioredis": "^4.0.2",
"koa": "^2.5.3",
"koa-bodyparser": "^4.2.1",
"koa-cors": "0.0.16",
"koa-logger": "^3.2.0",
"koa-router": "^7.4.0",
"md5": "^2.2.1",
"mysql2": "^1.6.1",
"sequelize": "^4.39.0",
"sql-template-strings": "^2.2.2",
"stripe": "^6.12.1"
}
}