-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
59 lines (59 loc) · 1.52 KB
/
Copy pathpackage.json
File metadata and controls
59 lines (59 loc) · 1.52 KB
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
55
56
57
58
59
{
"name": "all-time-high",
"version": "1.0.0",
"description": "",
"author": "",
"license": "MIT",
"main": "src/index.js",
"bin": "dist/index.js",
"scripts": {
"dev": "babel-node src",
"start": "NODE_ENV=production node dist/index.js",
"clean": "rimraf dist",
"build": "npm run clean && babel src --out-dir dist",
"package": "npm run build && pkg --debug --targets=node10-linux-x64 .",
"lint": "eslint src",
"test": "echo \"Error: no test specified\" && exit 1"
},
"dependencies": {
"bunyan": "^1.8.12",
"bunyan-format": "^0.2.1",
"config": "^3.1.0",
"eventemitter2": "^5.0.1",
"express": "^4.17.1",
"fs-extra": "^8.0.1",
"functional-helpers": "github:joelnet/functional-helpers",
"gdax": "^0.9.0",
"glob": "^7.1.4",
"js-yaml": "^3.13.1",
"mojiscript": "^0.13.1",
"moment": "^2.24.0",
"moment-timezone": "^0.5.31",
"nedb": "^1.8.0",
"numeral": "^2.0.6",
"opentype.js": "^1.1.0",
"prom-client": "^11.5.0",
"pureimage": "^0.1.6",
"ramda": "^0.26.1",
"redux": "^4.0.1",
"rxjs": "^5.5.12",
"stream-buffers": "^3.0.2",
"twit": "^2.2.11"
},
"devDependencies": {
"@babel/cli": "^7.4.4",
"@babel/core": "^7.4.5",
"@babel/node": "^7.4.5",
"@babel/preset-env": "^7.4.5",
"eslint": "^5.16.0",
"eslint-config-prettier": "^4.3.0",
"eslint-plugin-prettier": "^3.1.0",
"prettier": "^1.17.1"
},
"pkg": {
"scripts": [
"dist/plugins/**/*.js",
"dist/recipes/**/*.js"
]
}
}