-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
48 lines (48 loc) · 1.51 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
{
"name": "crypto-currency-tracker",
"version": "1.0.0",
"description": "For tracking latest rate of bitcoin and etherium against major fiat currencies",
"main": "src/index.js",
"repository": "https://github.com/nzediegwu1/crypto-currency-tracker.git",
"author": "anaeze <nzediegwu1@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/nzediegwu1/crypto-currency-tracker/issues"
},
"homepage": "https://github.com/nzediegwu1/crypto-currency-tracker#readme",
"scripts": {
"start": "NODE_ENV=production node src/dist/index.js",
"dev": "babel-watch src/index.js",
"build": "babel src -d src/dist --ignore src/dist",
"migrations": "npx sequelize-cli db:migrate",
"postinstall": "yarn build && yarn migrations"
},
"dependencies": {
"@babel/cli": "^7.4.4",
"@babel/core": "^7.4.4",
"@babel/node": "^7.2.2",
"@babel/plugin-proposal-class-properties": "^7.4.4",
"@babel/polyfill": "^7.4.4",
"@babel/preset-env": "^7.4.4",
"@babel/register": "^7.4.4",
"axios": "^0.19.0",
"babel-watch": "^7.0.0",
"body-parser": "^1.18.2",
"cors": "^2.8.5",
"dotenv": "^7.0.0",
"eslint": "^4.18.1",
"express": "^4.16.2",
"express-validator": "5.3.1",
"ms": "^2.1.2",
"pg": "^7.11.0",
"pg-hstore": "^2.3.3",
"sequelize": "^5.9.4",
"volleyball": "^1.4.1",
"winston": "^3.2.1"
},
"devDependencies": {
"babel-eslint": "^10.0.1",
"eslint-config-airbnb-base": "^12.1.0",
"eslint-plugin-import": "^2.9.0"
}
}