-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (55 loc) · 1.45 KB
/
package.json
File metadata and controls
55 lines (55 loc) · 1.45 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
{
"name": "mtgcb-price-service",
"version": "1.5.1",
"description": "MTG CB's Price Service",
"main": "index.js",
"scripts": {
"build": "babel src -d dist",
"start": "node -r dotenv/config dist/index.js",
"dev": "nodemon --exec babel-node -r dotenv/config src/index.js",
"test": "yarn build && jest --setupFiles dotenv/config"
},
"author": "Brian Chuchua",
"license": "MIT",
"private": true,
"dependencies": {
"axios": "0.19.2",
"bottleneck": "2.19.5",
"cli-progress": "3.8.2",
"core-js": "3.6.5",
"dotenv": "8.2.0",
"knex": "0.21.2",
"koa": "2.13.0",
"koa-route": "3.2.0",
"lodash": "4.17.19",
"moment": "2.27.0",
"node-cache": "5.1.2",
"node-cron": "2.0.3",
"pg": "8.3.0",
"regenerator-runtime": "0.13.7"
},
"devDependencies": {
"@babel/cli": "7.10.5",
"@babel/core": "7.11.0",
"@babel/node": "7.10.5",
"@babel/preset-env": "7.11.0",
"@jest/globals": "26.2.0",
"@types/jest": "26.0.8",
"babel-eslint": "10.1.0",
"eslint": "7.5.0",
"eslint-config-airbnb": "18.2.0",
"eslint-config-prettier": "6.11.0",
"eslint-plugin-html": "6.0.2",
"eslint-plugin-import": "2.22.0",
"eslint-plugin-jsx-a11y": "6.3.1",
"eslint-plugin-prettier": "3.1.4",
"eslint-plugin-react": "7.20.3",
"eslint-plugin-react-hooks": "4.0.8",
"jest": "26.2.2",
"nodemon": "2.0.4",
"prettier": "2.0.5"
},
"engines": {
"node": "14.x"
}
}