-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
47 lines (47 loc) · 1 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
{
"name": "steem-bot",
"version": "1.0.0",
"description": "Template for steem bots",
"engines": {
"node": "8.9.1"
},
"main": "app/index.js",
"scripts": {
"start": "node app/index.js",
"bot": "node app/bot.js"
},
"repository": {
"type": "git",
"url": "https://www.github.com/r351574nc3/we-resist-bot"
},
"keywords": [
"steem",
"docker",
"bot"
],
"author": "Leo Przybylski",
"license": "MIT",
"dependencies": {
"bluebird": "^3.5.1",
"body-parser": "^1.18.2",
"bootstrap-slider": "^10.0.0",
"ejs": "^2.5.7",
"express": "^4.15.2",
"handlebars": "^4.0.11",
"node-schedule": "^1.3.0",
"pg": "^7.4.1",
"pg-hstore": "^2.3.2",
"querystring": "^0.2.0",
"request": "^2.83.0",
"request-promise": "^4.2.2",
"sc2-sdk": "^1.0.2",
"sequelize": "latest",
"sequelize-cli": "latest",
"sequelize-encrypted": "latest",
"steem": "^0.7.1"
},
"devDependencies": {
"request": "^2.83.0",
"tape": "^4.7.0"
}
}