-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
49 lines (49 loc) · 1.25 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
{
"scripts": {
"dev": "NODE_ENV=development nodemon -w src --exec \"babel-node src --presets env\"",
"build": "babel src -s -D -d dist --presets env",
"start": "node dist/index.js",
"lint": "eslint src",
"prettier": "prettier --write --single-quote --print-width=120 --tab-width=2 \"src/**/*.{js,jsx}\""
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-core": "^6.26.0",
"babel-eslint": "^8.2.2",
"babel-preset-env": "^1.6.1",
"eslint": "^4.18.1",
"nodemon": "^1.15.1"
},
"dependencies": {
"babel-polyfill": "^6.26.0",
"convert-seconds": "^1.0.1",
"discord.js": "^11.3.0",
"dotenv": "^5.0.0",
"mongoose": "^4.13.9",
"steem": "^0.7.1",
"winston": "^2.4.0"
},
"eslintConfig": {
"parserOptions": {
"ecmaVersion": 7,
"sourceType": "module"
},
"env": {
"node": true
},
"rules": {
"no-console": 0,
"no-unused-var": 1
}
},
"engines": {
"node": "8.9.2"
},
"name": "Steemph.cebu",
"version": "1.0.0",
"description": "Upvote bot on Steem Blockchain for Philippines Cebu Community",
"main": "index.js",
"repository": "[email protected]:superoo7/Steemph.cebu.git",
"author": "Lai Weng Han <[email protected]>",
"license": "MIT"
}