-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 907 Bytes
/
package.json
File metadata and controls
33 lines (33 loc) · 907 Bytes
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
{
"name": "bill-mccash",
"version": "0.6.0",
"description": "Bill McCash Slack Bot",
"author": "Firework Web e Mobile",
"license": "MIT",
"main": "src/index.js",
"scripts": {
"restart": "node dist/index.js --restart",
"start": "node dist/index.js",
"lint": "eslint --ext js src",
"build:base": "rimraf dist/ && babel src --out-dir dist",
"build": "npm run build:base -- --source-maps",
"build:prod": "BABEL_ENV=production npm run build:base"
},
"dependencies": {
"axios": "^0.21.1",
"blinktrade": "^0.0.15",
"body-parser": "^1.18.2",
"express": "^4.16.2",
"lodash.get": "^4.4.2",
"lodash.includes": "^4.3.0",
"node-schedule": "^1.2.5"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-eslint": "^8.1.2",
"babel-preset-es2015": "^6.24.1",
"babili": "^0.1.4",
"eslint": "^4.18.2",
"rimraf": "^2.6.2"
}
}